Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function execute($command, callable $next) |
||
28 | { |
||
29 | if ($command->active) { |
||
30 | if (!$command->storage) { |
||
31 | throw new \RuntimeException("Require storage before using this middleware!"); |
||
32 | } |
||
33 | |||
34 | $command->storage->setLineActiveCmd($command->getCmd()); |
||
35 | $command->storage->setLineCommandData($command->getData()); |
||
36 | } |
||
37 | |||
38 | return $next($command); |
||
39 | } |
||
41 |