Page MenuHomePhorge

PhabricatorConfigSource.php
No OneTemporary

Size
633 B
Referenced Files
None
Subscribers
None

PhabricatorConfigSource.php

<?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(
pht('This configuration source does not support writes.'));
}
public function deleteKeys(array $keys) {
throw new Exception(
pht('This configuration source does not support writes.'));
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Jun 18, 5:34 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
223919
Default Alt Text
PhabricatorConfigSource.php (633 B)

Event Timeline