Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F452501
PhabricatorConfigKeySchema.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
711 B
Referenced Files
None
Subscribers
None
PhabricatorConfigKeySchema.php
View Options
<?php
final
class
PhabricatorConfigKeySchema
extends
PhabricatorConfigStorageSchema
{
private
$columnNames
;
public
function
setColumnNames
(
array
$column_names
)
{
$this
->
columnNames
=
$column_names
;
return
$this
;
}
public
function
getColumnNames
()
{
return
$this
->
columnNames
;
}
protected
function
getSubschemata
()
{
return
array
();
}
public
function
compareToSimilarSchema
(
PhabricatorConfigStorageSchema
$expect
)
{
$issues
=
array
();
if
(
$this
->
getColumnNames
()
!==
$expect
->
getColumnNames
())
{
$issues
[]
=
self
::
ISSUE_KEYCOLUMNS
;
}
return
$issues
;
}
public
function
newEmptyClone
()
{
$clone
=
clone
$this
;
return
$clone
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 12:40 AM (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
68836
Default Alt Text
PhabricatorConfigKeySchema.php (711 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment