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