Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class FlashMiddleware { |
||
19 | /** |
||
20 | * Flash service. |
||
21 | * |
||
22 | * @var Flash |
||
23 | */ |
||
24 | protected $flash = null; |
||
25 | |||
26 | /** |
||
27 | * Constructor. |
||
28 | * |
||
29 | * @codeCoverageIgnore |
||
30 | * @param Flash $flash |
||
31 | */ |
||
32 | public function __construct( Flash $flash ) { |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * {@inheritDoc} |
||
38 | */ |
||
39 | 2 | public function handle( RequestInterface $request, Closure $next ) { |
|
50 |