| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function execute($command, callable $next) |
||
| 31 | { |
||
| 32 | $handler = $this->handler; |
||
| 33 | |||
| 34 | $bulkCommand = new ArrayCollection([$command]); |
||
| 35 | /** @var \IteratorAggregate $result */ |
||
| 36 | $result = $handler($bulkCommand); |
||
| 37 | |||
| 38 | $resultArray = iterator_to_array($result, true); |
||
| 39 | |||
| 40 | return reset($resultArray); |
||
| 41 | } |
||
| 42 | } |
||
| 43 |