Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97570154
PhabricatorConfigSource.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
Sun, Jan 5, 09:05
Size
609 B
Mime Type
text/x-php
Expires
Tue, Jan 7, 09:05 (2 d)
Engine
blob
Format
Raw Data
Handle
23428644
Attached To
rPH Phabricator
PhabricatorConfigSource.php
View Options
<?php
abstract
class
PhabricatorConfigSource
{
private
$name
;
public
function
setName
(
$name
)
{
$this
->
name
=
$name
;
return
$this
;
}
public
function
getName
()
{
return
$this
->
name
;
}
abstract
public
function
getKeys
(
array
$keys
);
abstract
public
function
getAllKeys
();
public
function
canWrite
()
{
return
false
;
}
public
function
setKeys
(
array
$keys
)
{
throw
new
Exception
(
'This configuration source does not support writes.'
);
}
public
function
deleteKeys
(
array
$keys
)
{
throw
new
Exception
(
'This configuration source does not support writes.'
);
}
}
Event Timeline
Log In to Comment