Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122172294
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
Wed, Jul 16, 08:19
Size
909 B
Mime Type
text/x-php
Expires
Fri, Jul 18, 08:19 (2 d)
Engine
blob
Format
Raw Data
Handle
27444232
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