Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function __construct(CachedConfigCollection $parent) |
||
23 | { |
||
24 | $this->parent = $parent; |
||
25 | |||
26 | $this->collection = $this->parent->getCollection(); |
||
27 | $this->cache = $this->parent->getCache(); |
||
28 | $this->flush = $this->parent->getFlush(); |
||
29 | $this->collectionCreator = $this->parent->getCollectionCreator(); |
||
30 | } |
||
31 | |||
64 |