Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112101817
PhabricatorConfigKeySchema.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, May 7, 16:58
Size
725 B
Mime Type
text/x-php
Expires
Fri, May 9, 16:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25997543
Attached To
rPH Phabricator
PhabricatorConfigKeySchema.php
View Options
<?php
final
class
PhabricatorConfigKeySchema
extends
PhabricatorConfigStorageSchema
{
private
$columnNames
;
public
function
setColumnNames
(
array
$column_names
)
{
$this
->
columnNames
=
array_values
(
$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
;
}
}
Event Timeline
Log In to Comment