| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class DumpLogMiddleware implements Middleware |
||
| 22 | { |
||
| 23 | private $isDebug; |
||
| 24 | |||
| 25 | public function __construct($isDebug) |
||
| 26 | { |
||
| 27 | $this->isDebug = $isDebug; |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param AbstractCommand $command |
||
| 32 | * |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function execute($command, callable $next) |
||
| 43 | } |
||
| 44 | } |
||
| 45 |