1 | <?php |
||
22 | class DecoratingFactory |
||
23 | { |
||
24 | /** |
||
25 | * @type ProxyFactory |
||
26 | */ |
||
27 | private $proxyFactory; |
||
28 | |||
29 | /** |
||
30 | * @param ProxyFactory $proxyFactory |
||
31 | */ |
||
32 | public function __construct(ProxyFactory $proxyFactory) |
||
36 | |||
37 | /** |
||
38 | * @param CacheItemPoolInterface $originalObject original class |
||
39 | * |
||
40 | * @return CacheProxy|CacheItemPoolInterface |
||
41 | */ |
||
42 | public function create($originalObject) |
||
55 | } |
||
56 |