@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | $pipeline = array_reduce( |
| 55 | 55 | array_reverse($this->pipes), |
| 56 | 56 | $this->carry(), |
| 57 | - function ($passable) use ($destination) { |
|
| 57 | + function($passable) use ($destination) { |
|
| 58 | 58 | try { |
| 59 | 59 | return $destination($passable); |
| 60 | 60 | } catch (Throwable | Exception $e) { |
@@ -78,8 +78,8 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | protected function carry() |
| 80 | 80 | { |
| 81 | - return function ($stack, $pipe) { |
|
| 82 | - return function ($passable) use ($stack, $pipe) { |
|
| 81 | + return function($stack, $pipe) { |
|
| 82 | + return function($passable) use ($stack, $pipe) { |
|
| 83 | 83 | try { |
| 84 | 84 | return $pipe($passable, $stack); |
| 85 | 85 | } catch (Throwable | Exception $e) { |