1 | <?php |
||
11 | abstract class CachingLoggingEndpoint implements Endpoint |
||
12 | { |
||
13 | use LoggerAwareTrait; |
||
14 | |||
15 | /** |
||
16 | * @var CacheItemPoolInterface |
||
17 | */ |
||
18 | protected $cachePool; |
||
19 | |||
20 | /** |
||
21 | * @param CacheItemPoolInterface $cacheItemPool |
||
22 | */ |
||
23 | public function setCachePool(CacheItemPoolInterface $cacheItemPool) |
||
27 | } |
||
28 |