for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nip\Cache\Tests\Fixtures\App\Cacheable;
use Nip\Cache\Cacheable\HasCacheStore;
/**
* Class HasCacheStoreObject
* @package Nip\Cache\Tests\Fixtures\App\Cacheable
*/
class HasCacheStoreObject
{
use HasCacheStore;
* @return \Nip\Cache\Stores\Repository
public function getCacheStore()
return $this->cacheStore();
}