Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | public function __construct(Container $currentApp, Container $snapshotApp) |
||
12 | { |
||
13 | parent::__construct($currentApp, $snapshotApp); |
||
14 | if (!isset($this->currentApp['cookie'])) { |
||
15 | return; |
||
16 | } |
||
17 | $ref = new \ReflectionObject($this->currentApp['cookie']); |
||
18 | $this->queued = $ref->getProperty('queued'); |
||
19 | $this->queued->setAccessible(true); |
||
20 | } |
||
29 | } |