| 1 | <?php |
||
| 9 | class MemcacheService implements CloudEnvironmentAware, MemcacheServiceInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var \Acquia\Cloud\Environment\CloudEnvironmentInterface |
||
| 13 | */ |
||
| 14 | private $cloudEnvironment; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param \Acquia\Cloud\Environment\CloudEnvironmentInterface $cloudEnvironment |
||
| 18 | */ |
||
| 19 | 15 | public function __construct(CloudEnvironmentInterface $cloudEnvironment = null) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritDoc} |
||
| 30 | * |
||
| 31 | * @return \Acquia\Cloud\Memcache\MemcacheService |
||
| 32 | */ |
||
| 33 | 15 | public function setCloudEnvironment(CloudEnvironmentInterface $cloudEnvironment) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritDoc} |
||
| 41 | */ |
||
| 42 | 6 | public function getCloudEnvironment() |
|
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritDoc} |
||
| 49 | */ |
||
| 50 | 9 | public function credentials() |
|
| 66 | } |
||
| 67 |