Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104095937
DrydockInterface.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Mar 6, 11:08
Size
336 B
Mime Type
text/x-php
Expires
Sat, Mar 8, 11:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24689653
Attached To
rPH Phabricator
DrydockInterface.php
View Options
<?php
abstract
class
DrydockInterface
{
private
$config
;
abstract
public
function
getInterfaceType
();
final
public
function
setConfiguration
(
array
$config
)
{
$this
->
config
=
$config
;
return
$this
;
}
final
protected
function
getConfig
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
config
,
$key
,
$default
);
}
}
Event Timeline
Log In to Comment