| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 23 | 2 | public function peel(Container $container, \Closure $next) |
|
| 24 | { |
||
| 25 | 2 | $res = $next($container); |
|
| 26 | 2 | $this->init($container); |
|
| 27 | 2 | $this->logger->debug('After middleware'); |
|
| 28 | 2 | $this->response->getHeaderManager()->add( |
|
| 29 | 2 | self::_SIGN, |
|
| 30 | 2 | strval(microtime(true)) |
|
| 31 | ); |
||
| 32 | 2 | return $res; |
|
| 33 | } |
||
| 35 |