for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LunixREST\Endpoint;
use Psr\Cache\CacheItemPoolInterface;
/**
* Class CachingEndpoint
* @package LunixREST\Endpoint
*/
abstract class CachingEndpoint implements Endpoint
{
* @var CacheItemPoolInterface
protected $cachePool;
* @param CacheItemPoolInterface $cacheItemPool
public function setCachePool(CacheItemPoolInterface $cacheItemPool)
$this->cachePool = $cacheItemPool;
}