OC_ -> NC_
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
695a17804e
commit
0fcb37adcb
2 changed files with 3 additions and 3 deletions
|
@ -40,7 +40,7 @@ namespace OC;
|
|||
*/
|
||||
class Config {
|
||||
|
||||
const ENV_PREFIX = 'OC_';
|
||||
const ENV_PREFIX = 'NC_';
|
||||
|
||||
/** @var array Associative array ($key => $value) */
|
||||
protected $cache = array();
|
||||
|
@ -76,7 +76,7 @@ class Config {
|
|||
/**
|
||||
* Returns a config value
|
||||
*
|
||||
* gets its value from an `OC_` prefixed environment variable
|
||||
* gets its value from an `NC_` prefixed environment variable
|
||||
* if it doesn't exist from config.php
|
||||
* if this doesn't exist either, it will return the given `$default`
|
||||
*
|
||||
|
|
|
@ -50,7 +50,7 @@ class ConfigTest extends TestCase {
|
|||
|
||||
public function testGetValueReturnsEnvironmentValueIfSet() {
|
||||
$this->assertEquals('bar', $this->config->getValue('foo'));
|
||||
putenv('OC_foo=baz');
|
||||
putenv('NC_foo=baz');
|
||||
$this->assertEquals('baz', $this->config->getValue('foo'));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue