Page MenuHomePhorge

PhabricatorConfigSource.php
No OneTemporary

PhabricatorConfigSource.php

<?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.");
}
}

File Metadata

Mime Type
text/x-php
Expires
Jan 19 2025, 21:26 (6 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1128916
Default Alt Text
PhabricatorConfigSource.php (449 B)

Event Timeline