for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Acquia\Cloud\Memcache;
class MemcacheCredentials extends \ArrayObject
{
/**
* @return int
*/
public function host()
return $this['host'];
}
public function port()
return $this['port'];
* Returns the string stored in the config.json file.
public function __toString()
return $this->host() . ':' . $this->port();