Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91207860
HarbormasterBuildPlanBehaviorOption.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
Fri, Nov 8, 23:51
Size
954 B
Mime Type
text/x-php
Expires
Sun, Nov 10, 23:51 (2 d)
Engine
blob
Format
Raw Data
Handle
22220376
Attached To
rPH Phabricator
HarbormasterBuildPlanBehaviorOption.php
View Options
<?php
final
class
HarbormasterBuildPlanBehaviorOption
extends
Phobject
{
private
$name
;
private
$key
;
private
$icon
;
private
$description
;
private
$isDefault
;
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
return
$this
->
name
;
}
public
function
setKey
(
$key
)
{
$this
->
key
=
$key
;
return
$this
;
}
public
function
getKey
()
{
return
$this
->
key
;
}
public
function
setDescription
(
$description
)
{
$this
->
description
=
$description
;
return
$this
;
}
public
function
getDescription
()
{
return
$this
->
description
;
}
public
function
setIsDefault
(
$is_default
)
{
$this
->
isDefault
=
$is_default
;
return
$this
;
}
public
function
getIsDefault
()
{
return
$this
->
isDefault
;
}
public
function
setIcon
(
$icon
)
{
$this
->
icon
=
$icon
;
return
$this
;
}
public
function
getIcon
()
{
return
$this
->
icon
;
}
}
Event Timeline
Log In to Comment