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