Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99329240
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
Thu, Jan 23, 13:05
Size
909 B
Mime Type
text/x-php
Expires
Sat, Jan 25, 13:05 (2 d)
Engine
blob
Format
Raw Data
Handle
23773026
Attached To
rPH Phabricator
PhabricatorStoragePatch.php
View Options
<?php
final
class
PhabricatorStoragePatch
{
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