@@ -10,11 +10,11 @@ |
||
10 | 10 | { |
11 | 11 | public function start() |
12 | 12 | { |
13 | - Route::matched(function (RouteMatched $eventObj) { |
|
13 | + Route::matched(function(RouteMatched $eventObj) { |
|
14 | 14 | $matchedRoute = [ |
15 | 15 | $eventObj->route->getName(), |
16 | 16 | $eventObj->route->getActionName(), |
17 | - $eventObj->request->method().$eventObj->route->uri, |
|
17 | + $eventObj->request->method() . $eventObj->route->uri, |
|
18 | 18 | ]; |
19 | 19 | |
20 | 20 | resolve(RouteMatchListener::class)->execMatchedCallbacks($matchedRoute, $this->data); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | { |
35 | 35 | $gate = $this->defineNewGate($gate); |
36 | 36 | |
37 | - $this->chain->condition = function (...$payload) use ($gate, $parameters) { |
|
37 | + $this->chain->condition = function(...$payload) use ($gate, $parameters) { |
|
38 | 38 | return Gate::allows($gate, (array_merge($parameters, ...$payload))); |
39 | 39 | }; |
40 | 40 | |
@@ -48,8 +48,8 @@ discard block |
||
48 | 48 | |
49 | 49 | public function thisMethodShouldAllow($callback, array $parameters = []): Otherwise |
50 | 50 | { |
51 | - $this->chain->condition = function (...$payload) use ($callback, $parameters) { |
|
52 | - return (bool) app()->call($callback, array_merge($parameters, ...$payload)); |
|
51 | + $this->chain->condition = function(...$payload) use ($callback, $parameters) { |
|
52 | + return (bool)app()->call($callback, array_merge($parameters, ...$payload)); |
|
53 | 53 | }; |
54 | 54 | |
55 | 55 | return resolve(Otherwise::class); |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | |
58 | 58 | public function thisValueShouldAllow($value): Otherwise |
59 | 59 | { |
60 | - $this->chain->condition = function () use ($value) { |
|
61 | - return (bool) $value; |
|
60 | + $this->chain->condition = function() use ($value) { |
|
61 | + return (bool)$value; |
|
62 | 62 | }; |
63 | 63 | |
64 | 64 | return resolve(Otherwise::class); |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | |
67 | 67 | public function youShouldBeGuest($guard = null): Otherwise |
68 | 68 | { |
69 | - $this->chain->condition = function () use ($guard) { |
|
69 | + $this->chain->condition = function() use ($guard) { |
|
70 | 70 | return auth($guard)->guest(); |
71 | 71 | }; |
72 | 72 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | public function sessionShouldHave($key): Otherwise |
77 | 77 | { |
78 | - $this->chain->condition = function () use ($key) { |
|
78 | + $this->chain->condition = function() use ($key) { |
|
79 | 79 | return session()->has($key); |
80 | 80 | }; |
81 | 81 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | public function youShouldBeLoggedIn($guard = null): Otherwise |
86 | 86 | { |
87 | - $this->chain->condition = function () use ($guard) { |
|
87 | + $this->chain->condition = function() use ($guard) { |
|
88 | 88 | return auth($guard)->check(); |
89 | 89 | }; |
90 | 90 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | public function youShouldAlways(): Reactions |
95 | 95 | { |
96 | - $this->chain->condition = function () { |
|
96 | + $this->chain->condition = function() { |
|
97 | 97 | return false; |
98 | 98 | }; |
99 | 99 |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | $reaction = $this->makeReaction(); |
30 | 30 | $condition = $this->chain->condition; |
31 | 31 | |
32 | - return function (...$f) use ($condition, $reaction) { |
|
32 | + return function(...$f) use ($condition, $reaction) { |
|
33 | 33 | if (!$condition($f)) { |
34 | 34 | $reaction(); |
35 | 35 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $beforeResponse = $this->chain->beforeResponse(); |
43 | 43 | $debug = resolve(Chain::class)->debugInfo; |
44 | 44 | |
45 | - return function () use ($beforeResponse, $responder, $debug) { |
|
45 | + return function() use ($beforeResponse, $responder, $debug) { |
|
46 | 46 | event('heyman_reaction_is_happening', $debug); |
47 | 47 | $beforeResponse(); |
48 | 48 | $responder(); |
@@ -37,7 +37,7 @@ |
||
37 | 37 | public function __destruct() |
38 | 38 | { |
39 | 39 | $data = $this->validationData; |
40 | - $modifier = $this->modifier ?: function ($d) { |
|
40 | + $modifier = $this->modifier ?: function($d) { |
|
41 | 41 | return $d; |
42 | 42 | }; |
43 | 43 | $this->chain->condition = resolve(ResponderFactory::class)->validatorCallback($modifier, ...$data); |
@@ -10,15 +10,15 @@ |
||
10 | 10 | return; |
11 | 11 | } |
12 | 12 | |
13 | - app()->singleton('heyman.debugger', function () { |
|
13 | + app()->singleton('heyman.debugger', function() { |
|
14 | 14 | return new \DebugBar\DataCollector\MessagesCollector('HeyMan'); |
15 | 15 | }); |
16 | 16 | |
17 | 17 | app()->make('debugbar')->addCollector(app('heyman.debugger')); |
18 | 18 | |
19 | - \Event::listen('heyman_reaction_is_happening', function (...$debug) { |
|
20 | - resolve('heyman.debugger')->addMessage('HeyMan Rule Matched in file: '.$debug[0]); |
|
21 | - resolve('heyman.debugger')->addMessage('on line: '.$debug[1]); |
|
19 | + \Event::listen('heyman_reaction_is_happening', function(...$debug) { |
|
20 | + resolve('heyman.debugger')->addMessage('HeyMan Rule Matched in file: ' . $debug[0]); |
|
21 | + resolve('heyman.debugger')->addMessage('on line: ' . $debug[1]); |
|
22 | 22 | resolve('heyman.debugger')->addMessage($debug[2]); |
23 | 23 | }); |
24 | 24 | } |