18 lines
302 B
PHP
18 lines
302 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* Local configuration values
|
|
*
|
|
* This script is loaded from an instance of the Core\Config class.
|
|
*
|
|
* Useful properties:
|
|
* - $this->account
|
|
* - $this->password
|
|
* - $this->servers
|
|
*/
|
|
|
|
$this->account = '';
|
|
$this->password = '';
|
|
$this->servers = array(
|
|
'localhost:11211',
|
|
);
|