Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107535874
HarbormasterBuildAutoplan.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
Tue, Apr 8, 20:40
Size
455 B
Mime Type
text/x-php
Expires
Thu, Apr 10, 20:40 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25402411
Attached To
rPH Phabricator
HarbormasterBuildAutoplan.php
View Options
<?php
abstract
class
HarbormasterBuildAutoplan
extends
Phobject
{
abstract
public
function
getAutoplanPlanKey
();
abstract
public
function
getAutoplanName
();
public
static
function
getAutoplan
(
$key
)
{
return
idx
(
self
::
getAllAutoplans
(),
$key
);
}
public
static
function
getAllAutoplans
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getAutoplanPlanKey'
)
->
execute
();
}
}
Event Timeline
Log In to Comment