@@ -21,13 +21,13 @@ |
||
| 21 | 21 | { |
| 22 | 22 | $process = $processEvent->getProcess(); |
| 23 | 23 | |
| 24 | - if ( ! $processEvent->has('output_interface')) { |
|
| 24 | + if (!$processEvent->has('output_interface')) { |
|
| 25 | 25 | throw new \BadMethodCallException('missing output_interface'); |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | $output = $processEvent->get('output_interface'); |
| 29 | 29 | |
| 30 | - if ( ! $output instanceof OutputInterface) { |
|
| 30 | + if (!$output instanceof OutputInterface) { |
|
| 31 | 31 | throw new \BadMethodCallException('output_interface, unexpected type: ' . get_class($output)); |
| 32 | 32 | } |
| 33 | 33 | |