memcache_ui.local.php 302 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * @file
  4. * Local configuration values
  5. *
  6. * This script is loaded from an instance of the Core\Config class.
  7. *
  8. * Useful properties:
  9. * - $this->account
  10. * - $this->password
  11. * - $this->servers
  12. */
  13. $this->account = '';
  14. $this->password = '';
  15. $this->servers = array(
  16. 'localhost:11211',
  17. );