Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99613958
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
Sat, Jan 25, 19:02
Size
360 B
Mime Type
text/x-php
Expires
Mon, Jan 27, 19:02 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23833123
Attached To
rPH Phabricator
DrydockInterface.php
View Options
<?php
abstract
class
DrydockInterface
extends
Phobject
{
private
$config
=
array
();
abstract
public
function
getInterfaceType
();
final
public
function
setConfig
(
$key
,
$value
)
{
$this
->
config
[
$key
]
=
$value
;
return
$this
;
}
final
protected
function
getConfig
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
config
,
$key
,
$default
);
}
}
Event Timeline
Log In to Comment