Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101650215
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
Wed, Feb 12, 11:09
Size
449 B
Mime Type
text/x-php
Expires
Fri, Feb 14, 11:09 (2 d)
Engine
blob
Format
Raw Data
Handle
24205920
Attached To
rPH Phabricator
PhabricatorConfigSource.php
View Options
<?php
abstract
class
PhabricatorConfigSource
{
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