Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | 12 | public function execute($command, callable $next) |
|
32 | { |
||
33 | 12 | $constraintViolations = $this->validator->validate($command); |
|
34 | |||
35 | 12 | if (count($constraintViolations) > 0) { |
|
36 | 3 | throw InvalidCommandException::onCommand($command, $constraintViolations); |
|
37 | } |
||
38 | |||
39 | 9 | return $next($command); |
|
40 | } |
||
41 | } |
||
43 |