We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -20,8 +20,8 @@ discard block |
||
20 | 20 | * - when true: `address[street]` |
21 | 21 | * - when false: `[address][street]` |
22 | 22 | */ |
23 | -if (! Str::hasMacro('dotsToSquareBrackets')) { |
|
24 | - Str::macro('dotsToSquareBrackets', function ($string, $ignore = [], $keyFirst = true) { |
|
23 | +if (!Str::hasMacro('dotsToSquareBrackets')) { |
|
24 | + Str::macro('dotsToSquareBrackets', function($string, $ignore = [], $keyFirst = true) { |
|
25 | 25 | $stringParts = explode('.', $string); |
26 | 26 | $result = ''; |
27 | 27 | |
@@ -35,8 +35,8 @@ discard block |
||
35 | 35 | return $result; |
36 | 36 | }); |
37 | 37 | } |
38 | -if (! CrudColumn::hasMacro('withFiles')) { |
|
39 | - CrudColumn::macro('withFiles', function ($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
38 | +if (!CrudColumn::hasMacro('withFiles')) { |
|
39 | + CrudColumn::macro('withFiles', function($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
40 | 40 | $uploadDefinition = is_array($uploadDefinition) ? $uploadDefinition : []; |
41 | 41 | /** @var CrudField|CrudColumn $this */ |
42 | 42 | RegisterUploadEvents::handle($this, $uploadDefinition, 'withFiles', $subfield, $registerUploaderEvents); |
@@ -45,8 +45,8 @@ discard block |
||
45 | 45 | }); |
46 | 46 | } |
47 | 47 | |
48 | -if (! CrudField::hasMacro('withFiles')) { |
|
49 | - CrudField::macro('withFiles', function ($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
48 | +if (!CrudField::hasMacro('withFiles')) { |
|
49 | + CrudField::macro('withFiles', function($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
50 | 50 | $uploadDefinition = is_array($uploadDefinition) ? $uploadDefinition : []; |
51 | 51 | /** @var CrudField|CrudColumn $this */ |
52 | 52 | RegisterUploadEvents::handle($this, $uploadDefinition, 'withFiles', $subfield, $registerUploaderEvents); |
@@ -55,8 +55,8 @@ discard block |
||
55 | 55 | }); |
56 | 56 | } |
57 | 57 | |
58 | -if (! CrudColumn::hasMacro('linkTo')) { |
|
59 | - CrudColumn::macro('linkTo', function (string|array|Closure $routeOrConfiguration, ?array $parameters = []): static { |
|
58 | +if (!CrudColumn::hasMacro('linkTo')) { |
|
59 | + CrudColumn::macro('linkTo', function(string | array | Closure $routeOrConfiguration, ?array $parameters = []): static { |
|
60 | 60 | $wrapper = $this->attributes['wrapper'] ?? []; |
61 | 61 | |
62 | 62 | // parse the function input to get the actual route and parameters we'll be working with |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | |
70 | 70 | // if the route is a closure, we'll just call it |
71 | 71 | if ($route instanceof Closure) { |
72 | - $wrapper['href'] = function ($crud, $column, $entry, $related_key) use ($route) { |
|
72 | + $wrapper['href'] = function($crud, $column, $entry, $related_key) use ($route) { |
|
73 | 73 | return $route($entry, $related_key, $column, $crud); |
74 | 74 | }; |
75 | 75 | $this->wrapper($wrapper); |
@@ -78,13 +78,13 @@ discard block |
||
78 | 78 | } |
79 | 79 | |
80 | 80 | // if the route doesn't exist, we'll throw an exception |
81 | - if (! $routeInstance = Route::getRoutes()->getByName($route)) { |
|
81 | + if (!$routeInstance = Route::getRoutes()->getByName($route)) { |
|
82 | 82 | throw new \Exception("Route [{$route}] not found while building the link for column [{$this->attributes['name']}]."); |
83 | 83 | } |
84 | 84 | |
85 | 85 | // calculate the parameters we'll be using for the route() call |
86 | 86 | // (eg. if there's only one parameter and user didn't provide it, we'll assume it's the entry's related key) |
87 | - $parameters = (function () use ($parameters, $routeInstance, $route) { |
|
87 | + $parameters = (function() use ($parameters, $routeInstance, $route) { |
|
88 | 88 | $expectedParameters = $routeInstance->parameterNames(); |
89 | 89 | |
90 | 90 | if (count($expectedParameters) === 0) { |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | if (count($autoInferedParameter) > 1) { |
96 | 96 | throw new \Exception("Route [{$route}] expects parameters [".implode(', ', $expectedParameters)."]. Insuficient parameters provided in column: [{$this->attributes['name']}]."); |
97 | 97 | } |
98 | - $autoInferedParameter = current($autoInferedParameter) ? [current($autoInferedParameter) => function ($entry, $related_key, $column, $crud) { |
|
98 | + $autoInferedParameter = current($autoInferedParameter) ? [current($autoInferedParameter) => function($entry, $related_key, $column, $crud) { |
|
99 | 99 | $entity = $crud->isAttributeInRelationString($column) ? Str::before($column['entity'], '.') : $column['entity']; |
100 | 100 | |
101 | 101 | return $related_key ?? $entry->{$entity}?->getKey(); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | })(); |
106 | 106 | |
107 | 107 | // set up the wrapper href attribute |
108 | - $wrapper['href'] = function ($crud, $column, $entry, $related_key) use ($route, $parameters) { |
|
108 | + $wrapper['href'] = function($crud, $column, $entry, $related_key) use ($route, $parameters) { |
|
109 | 109 | // if the parameter is callable, we'll call it |
110 | 110 | $parameters = collect($parameters)->map(fn ($item) => is_callable($item) ? $item($entry, $related_key, $column, $crud) : $item)->toArray(); |
111 | 111 | |
@@ -124,8 +124,8 @@ discard block |
||
124 | 124 | * |
125 | 125 | * It will go to the given CrudController and get the setupRoutes() method on it. |
126 | 126 | */ |
127 | -if (! Route::hasMacro('crud')) { |
|
128 | - Route::macro('crud', function ($name, $controller) { |
|
127 | +if (!Route::hasMacro('crud')) { |
|
128 | + Route::macro('crud', function($name, $controller) { |
|
129 | 129 | // put together the route name prefix, |
130 | 130 | // as passed to the Route::group() statements |
131 | 131 | $routeName = ''; |
@@ -161,11 +161,11 @@ discard block |
||
161 | 161 | // and we can safely use reflection instead of instantiating the controller class |
162 | 162 | $deprecated = $setupRoutesMethod->getAttributes(\Backpack\CRUD\app\Library\Attributes\DeprecatedIgnoreOnRuntime::class); |
163 | 163 | |
164 | - if(empty($deprecated)){ |
|
164 | + if (empty($deprecated)) { |
|
165 | 165 | // when the attribute DeprecatedIgnoreOnRuntime is not found is because the developer has overwritten the method |
166 | 166 | // we will keep the old behavior for backwards compatibility |
167 | 167 | $setupRoutesMethod->invoke(App::make($namespacedController), $name, $routeName, $controller); |
168 | - }else{ |
|
168 | + } else { |
|
169 | 169 | foreach ($reflection->getMethods() as $method) { |
170 | 170 | if (($method->isPublic() || |
171 | 171 | $method->isProtected()) && |
@@ -165,7 +165,7 @@ |
||
165 | 165 | // when the attribute DeprecatedIgnoreOnRuntime is not found is because the developer has overwritten the method |
166 | 166 | // we will keep the old behavior for backwards compatibility |
167 | 167 | $setupRoutesMethod->invoke(App::make($namespacedController), $name, $routeName, $controller); |
168 | - }else{ |
|
168 | + } else{ |
|
169 | 169 | foreach ($reflection->getMethods() as $method) { |
170 | 170 | if (($method->isPublic() || |
171 | 171 | $method->isProtected()) && |