| Conditions | 4 |
| Paths | 4 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 3 | public function leave(\Twig_Profiler_Profile $profile) |
|
| 37 | { |
||
| 38 | 3 | $profile->leave(); |
|
| 39 | 3 | array_shift($this->actives); |
|
| 40 | |||
| 41 | 3 | if (1 === count($this->actives)) { |
|
| 42 | 3 | $this->actives[0]->leave(); |
|
| 43 | } |
||
| 44 | 3 | if ($this->stopwatch && $profile->isTemplate()) { |
|
| 45 | 1 | $this->events[$profile]->stop(); |
|
| 46 | 1 | unset($this->events[$profile]); |
|
| 47 | } |
||
| 48 | 3 | } |
|
| 49 | |||
| 58 |