@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | $reaction = $this->makeReaction(); |
15 | 15 | $condition = resolve(Chain::class)->condition; |
16 | 16 | |
17 | - return function (...$f) use ($condition, $reaction) { |
|
17 | + return function(...$f) use ($condition, $reaction) { |
|
18 | 18 | if (!$condition($f)) { |
19 | 19 | $reaction(); |
20 | 20 | } |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | |
30 | 30 | $responder = resolve(ResponderFactory::class)->make(); |
31 | 31 | |
32 | - return function () use ($beforeReaction, $responder, $debug) { |
|
32 | + return function() use ($beforeReaction, $responder, $debug) { |
|
33 | 33 | event('heyman_reaction_is_happening', $debug); |
34 | 34 | $beforeReaction(); |
35 | 35 | $responder(); |
@@ -23,14 +23,14 @@ discard block |
||
23 | 23 | |
24 | 24 | public function addCallbackBeforeReaction($callback, $parameters) |
25 | 25 | { |
26 | - $this->beforeReaction[] = function () use ($callback, $parameters) { |
|
26 | + $this->beforeReaction[] = function() use ($callback, $parameters) { |
|
27 | 27 | app()->call($callback, $parameters); |
28 | 28 | }; |
29 | 29 | } |
30 | 30 | |
31 | 31 | public function addEventBeforeReaction($event, array $payload, bool $halt) |
32 | 32 | { |
33 | - $this->beforeReaction[] = function () use ($event, $payload, $halt) { |
|
33 | + $this->beforeReaction[] = function() use ($event, $payload, $halt) { |
|
34 | 34 | resolve('events')->dispatch($event, $payload, $halt); |
35 | 35 | }; |
36 | 36 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | $tasks = $this->beforeReaction; |
47 | 47 | $this->beforeReaction = []; |
48 | 48 | |
49 | - return function () use ($tasks) { |
|
49 | + return function() use ($tasks) { |
|
50 | 50 | foreach ($tasks as $task) { |
51 | 51 | $task(); |
52 | 52 | } |