Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2680442
DiffusionRepositoryRef.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
DiffusionRepositoryRef.php
View Options
<?php
/**
* @task serialization Serializing Repository Refs
*/
final
class
DiffusionRepositoryRef
extends
Phobject
{
private
$shortName
;
private
$commitIdentifier
;
private
$refType
;
private
$rawFields
=
array
(
)
;
public
function
setRawFields
(
array
$raw_fields
)
{
$this
->
rawFields
=
$raw_fields
;
return
$this
;
}
public
function
getRawFields
(
)
{
return
$this
->
rawFields
;
}
public
function
setCommitIdentifier
(
$commit_identifier
)
{
$this
->
commitIdentifier
=
$commit_identifier
;
return
$this
;
}
public
function
getCommitIdentifier
(
)
{
return
$this
->
commitIdentifier
;
}
public
function
setShortName
(
$short_name
)
{
$this
->
shortName
=
$short_name
;
return
$this
;
}
public
function
getShortName
(
)
{
return
$this
->
shortName
;
}
public
function
setRefType
(
$ref_type
)
{
$this
->
refType
=
$ref_type
;
return
$this
;
}
public
function
getRefType
(
)
{
return
$this
->
refType
;
}
public
function
isBranch
(
)
{
$type_branch
=
PhabricatorRepositoryRefCursor
::
TYPE_BRANCH
;
return
(
$this
->
getRefType
(
)
===
$type_branch
)
;
}
public
function
isTag
(
)
{
$type_tag
=
PhabricatorRepositoryRefCursor
::
TYPE_TAG
;
return
(
$this
->
getRefType
(
)
===
$type_tag
)
;
}
/* -( Serialization )------------------------------------------------------ */
public
function
toDictionary
(
)
{
return
array
(
'shortName'
=>
$this
->
shortName
,
'commitIdentifier'
=>
$this
->
commitIdentifier
,
'refType'
=>
$this
->
refType
,
'rawFields'
=>
$this
->
rawFields
,
)
;
}
public
static
function
newFromDictionary
(
array
$dict
)
{
return
id
(
new
DiffusionRepositoryRef
(
)
)
->
setShortName
(
$dict
[
'shortName'
]
)
->
setCommitIdentifier
(
$dict
[
'commitIdentifier'
]
)
->
setRefType
(
$dict
[
'refType'
]
)
->
setRawFields
(
$dict
[
'rawFields'
]
)
;
}
public
static
function
loadAllFromDictionaries
(
array
$dictionaries
)
{
$refs
=
array
(
)
;
foreach
(
$dictionaries
as
$dictionary
)
{
$refs
[
]
=
self
::
newFromDictionary
(
$dictionary
)
;
}
return
$refs
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Dec 19, 17:07 (20 h, 6 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1014889
Default Alt Text
DiffusionRepositoryRef.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment