Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93862722
PhabricatorStoragePatch.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
Mon, Dec 2, 02:30
Size
926 B
Mime Type
text/x-php
Expires
Wed, Dec 4, 02:30 (2 d)
Engine
blob
Format
Raw Data
Handle
22716087
Attached To
rPH Phabricator
PhabricatorStoragePatch.php
View Options
<?php
final
class
PhabricatorStoragePatch
extends
Phobject
{
private
$key
;
private
$fullKey
;
private
$name
;
private
$type
;
private
$after
;
private
$legacy
;
private
$dead
;
public
function
__construct
(
array
$dict
)
{
$this
->
key
=
$dict
[
'key'
];
$this
->
type
=
$dict
[
'type'
];
$this
->
fullKey
=
$dict
[
'fullKey'
];
$this
->
legacy
=
$dict
[
'legacy'
];
$this
->
name
=
$dict
[
'name'
];
$this
->
after
=
$dict
[
'after'
];
$this
->
dead
=
$dict
[
'dead'
];
}
public
function
getLegacy
()
{
return
$this
->
legacy
;
}
public
function
getAfter
()
{
return
$this
->
after
;
}
public
function
getType
()
{
return
$this
->
type
;
}
public
function
getName
()
{
return
$this
->
name
;
}
public
function
getFullKey
()
{
return
$this
->
fullKey
;
}
public
function
getKey
()
{
return
$this
->
key
;
}
public
function
isDead
()
{
return
$this
->
dead
;
}
}
Event Timeline
Log In to Comment