We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -205,7 +205,7 @@ |
||
205 | 205 | return Auth::guard(); |
206 | 206 | } |
207 | 207 | |
208 | - private function logoutIfEmailNotVerified(Request $request): Response|\Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector |
|
208 | + private function logoutIfEmailNotVerified(Request $request): Response | \Illuminate\Http\RedirectResponse | \Illuminate\Routing\Redirector |
|
209 | 209 | { |
210 | 210 | $user = $this->guard()->user(); |
211 | 211 |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | class VerifyEmailController extends Controller |
13 | 13 | { |
14 | - public null|string $redirectTo = null; |
|
14 | + public null | string $redirectTo = null; |
|
15 | 15 | |
16 | 16 | /** |
17 | 17 | * Create a new controller instance. |
@@ -20,21 +20,21 @@ discard block |
||
20 | 20 | */ |
21 | 21 | public function __construct() |
22 | 22 | { |
23 | - if (! app('router')->getMiddleware()['signed'] ?? null) { |
|
23 | + if (!app('router')->getMiddleware()['signed'] ?? null) { |
|
24 | 24 | throw new Exception('Missing "signed" alias middleware in App/Http/Kernel.php. More info: https://backpackforlaravel.com/docs/6.x/base-how-to#enable-email-verification-in-backpack-routes'); |
25 | 25 | } |
26 | 26 | |
27 | 27 | $this->middleware('signed')->only('verifyEmail'); |
28 | 28 | $this->middleware('throttle:'.config('backpack.base.email_verification_throttle_access'))->only('resendVerificationEmail'); |
29 | 29 | |
30 | - if (! backpack_users_have_email()) { |
|
30 | + if (!backpack_users_have_email()) { |
|
31 | 31 | abort(500, trans('backpack::base.no_email_column')); |
32 | 32 | } |
33 | 33 | // where to redirect after the email is verified |
34 | 34 | $this->redirectTo = $this->redirectTo ?? backpack_url('dashboard'); |
35 | 35 | } |
36 | 36 | |
37 | - public function emailVerificationRequired(Request $request): \Illuminate\Contracts\View\View|\Illuminate\Http\RedirectResponse |
|
37 | + public function emailVerificationRequired(Request $request): \Illuminate\Contracts\View\View | \Illuminate\Http\RedirectResponse |
|
38 | 38 | { |
39 | 39 | $this->getUserOrRedirect($request); |
40 | 40 | |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | return $request->user(backpack_guard_name()) ?? (new UserFromCookie())(); |
78 | 78 | } |
79 | 79 | |
80 | - private function getUserOrRedirect(Request $request): \Illuminate\Contracts\Auth\MustVerifyEmail|\Illuminate\Http\RedirectResponse |
|
80 | + private function getUserOrRedirect(Request $request): \Illuminate\Contracts\Auth\MustVerifyEmail | \Illuminate\Http\RedirectResponse |
|
81 | 81 | { |
82 | 82 | if ($user = $this->getUser($request)) { |
83 | 83 | return $user; |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * Set an operation as having access using the Settings API. |
12 | 12 | */ |
13 | - public function allowAccess(array|string $operation): bool |
|
13 | + public function allowAccess(array | string $operation): bool |
|
14 | 14 | { |
15 | 15 | foreach ((array) $operation as $op) { |
16 | 16 | $this->set($op.'.access', true); |
@@ -22,13 +22,13 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * Disable the access to a certain operation, or the current one. |
24 | 24 | */ |
25 | - public function denyAccess(array|string $operation): bool |
|
25 | + public function denyAccess(array | string $operation): bool |
|
26 | 26 | { |
27 | 27 | foreach ((array) $operation as $op) { |
28 | 28 | $this->set($op.'.access', false); |
29 | 29 | } |
30 | 30 | |
31 | - return ! $this->hasAccessToAny($operation); |
|
31 | + return !$this->hasAccessToAny($operation); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | /** |
51 | 51 | * Check if any operations are allowed for a Crud Panel. Return false if not. |
52 | 52 | */ |
53 | - public function hasAccessToAny(array|string $operation_array, ?Model $entry = null): bool |
|
53 | + public function hasAccessToAny(array | string $operation_array, ?Model $entry = null): bool |
|
54 | 54 | { |
55 | 55 | foreach ((array) $operation_array as $key => $operation) { |
56 | 56 | if ($this->hasAccess($operation, $entry) == true) { |
@@ -64,10 +64,10 @@ discard block |
||
64 | 64 | /** |
65 | 65 | * Check if all operations are allowed for a Crud Panel. Return false if not. |
66 | 66 | */ |
67 | - public function hasAccessToAll(array|string $operation_array, ?Model $entry = null): bool |
|
67 | + public function hasAccessToAll(array | string $operation_array, ?Model $entry = null): bool |
|
68 | 68 | { |
69 | 69 | foreach ((array) $operation_array as $key => $operation) { |
70 | - if (! $this->hasAccess($operation, $entry)) { |
|
70 | + if (!$this->hasAccess($operation, $entry)) { |
|
71 | 71 | return false; |
72 | 72 | } |
73 | 73 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | */ |
83 | 83 | public function hasAccessOrFail(string $operation, ?Model $entry = null): bool |
84 | 84 | { |
85 | - if (! $this->hasAccess($operation, $entry)) { |
|
85 | + if (!$this->hasAccess($operation, $entry)) { |
|
86 | 86 | throw new AccessDeniedException(trans('backpack::crud.unauthorized_access', ['access' => $operation])); |
87 | 87 | } |
88 | 88 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * Get an operation's access condition, if set. A condition |
94 | 94 | * can be anything, but usually a boolean or a callable. |
95 | 95 | */ |
96 | - public function getAccessCondition(string $operation): bool|callable|null |
|
96 | + public function getAccessCondition(string $operation): bool | callable | null |
|
97 | 97 | { |
98 | 98 | return $this->get($operation.'.access'); |
99 | 99 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | /** |
102 | 102 | * Set the condition under which an operation is allowed for a Crud Panel. |
103 | 103 | */ |
104 | - public function setAccessCondition(array|string $operation, bool|callable|null $condition): void |
|
104 | + public function setAccessCondition(array | string $operation, bool | callable | null $condition): void |
|
105 | 105 | { |
106 | 106 | foreach ((array) $operation as $op) { |
107 | 107 | $this->set($op.'.access', $condition); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $model = $this->getRelationModel($entity, -1); |
66 | 66 | $lastSegmentAfterDot = Str::of($field['entity'])->afterLast('.'); |
67 | 67 | |
68 | - if (! method_exists($model, $lastSegmentAfterDot)) { |
|
68 | + if (!method_exists($model, $lastSegmentAfterDot)) { |
|
69 | 69 | return (string) Str::of($field['entity'])->beforeLast('.'); |
70 | 70 | } |
71 | 71 | |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | |
87 | 87 | return collect($this->getCleanStateFields()) |
88 | 88 | ->whereIn('relation_type', $relation_types) |
89 | - ->filter(function ($item) use ($nested) { |
|
89 | + ->filter(function($item) use ($nested) { |
|
90 | 90 | if ($nested) { |
91 | 91 | return true; |
92 | 92 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | */ |
131 | 131 | private function getRelationFieldsWithoutRelationType($relations, $fields = []) |
132 | 132 | { |
133 | - if (! is_array($relations)) { |
|
133 | + if (!is_array($relations)) { |
|
134 | 134 | $relations = [$relations]; |
135 | 135 | } |
136 | 136 | |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | } |
140 | 140 | |
141 | 141 | foreach ($relations as $relation) { |
142 | - $fields = array_filter($fields, function ($field) use ($relation) { |
|
143 | - if (! isset($field['relation_type'])) { |
|
142 | + $fields = array_filter($fields, function($field) use ($relation) { |
|
143 | + if (!isset($field['relation_type'])) { |
|
144 | 144 | return false; |
145 | 145 | } |
146 | 146 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | $fields = array_merge($field['subfields'], $fields); |
175 | 175 | } |
176 | 176 | } |
177 | - $fields = array_filter($fields, function ($field) { |
|
177 | + $fields = array_filter($fields, function($field) { |
|
178 | 178 | return isset($field['relation_type']) && $field['relation_type'] === 'BelongsTo'; |
179 | 179 | }); |
180 | 180 | } |
@@ -241,8 +241,8 @@ discard block |
||
241 | 241 | { |
242 | 242 | $all_relation_fields = $this->getRelationFields(); |
243 | 243 | |
244 | - return Arr::where($all_relation_fields, function ($value, $key) { |
|
245 | - return isset($value['pivot']) && ! $value['pivot']; |
|
244 | + return Arr::where($all_relation_fields, function($value, $key) { |
|
245 | + return isset($value['pivot']) && !$value['pivot']; |
|
246 | 246 | }); |
247 | 247 | } |
248 | 248 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | { |
256 | 256 | $all_relation_fields = $this->getRelationFields(); |
257 | 257 | |
258 | - return Arr::where($all_relation_fields, function ($value, $key) { |
|
258 | + return Arr::where($all_relation_fields, function($value, $key) { |
|
259 | 259 | return isset($value['pivot']) && $value['pivot']; |
260 | 260 | }); |
261 | 261 | } |
@@ -336,7 +336,7 @@ discard block |
||
336 | 336 | } |
337 | 337 | |
338 | 338 | // relationships are always public methods. |
339 | - if (! $methodReflection->isPublic()) { |
|
339 | + if (!$methodReflection->isPublic()) { |
|
340 | 340 | return false; |
341 | 341 | } |
342 | 342 | |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | */ |
364 | 364 | public function isAttributeInRelationString(array $field): bool |
365 | 365 | { |
366 | - if (! str_contains($field['entity'], '.')) { |
|
366 | + if (!str_contains($field['entity'], '.')) { |
|
367 | 367 | return false; |
368 | 368 | } |
369 | 369 |
@@ -44,7 +44,7 @@ |
||
44 | 44 | ->filter(fn ($item) => isset($item[$macro])); |
45 | 45 | |
46 | 46 | $subfieldsWithMacros->each( |
47 | - function ($item) use ($subfieldsWithMacros, $macro) { |
|
47 | + function($item) use ($subfieldsWithMacros, $macro) { |
|
48 | 48 | if ($subfieldsWithMacros->last() === $item) { |
49 | 49 | $this->{$macro}($item[$macro], $item); |
50 | 50 | } else { |
@@ -23,7 +23,7 @@ |
||
23 | 23 | (array) config('backpack.base.middleware_key', 'admin'), |
24 | 24 | 'prefix' => config('backpack.base.route_prefix', 'admin'), |
25 | 25 | ], |
26 | - function () { |
|
26 | + function() { |
|
27 | 27 | Route::get('articles/{id}/show/{detail}', ['as' => 'article.show.detail', 'action' => 'Backpack\CRUD\Tests\config\Http\Controllers\ArticleCrudController@detail']); |
28 | 28 | Route::crud('users', 'Backpack\CRUD\Tests\config\Http\Controllers\UserCrudController'); |
29 | 29 | Route::crud('articles', 'Backpack\CRUD\Tests\config\Http\Controllers\ArticleCrudController'); |
@@ -19,8 +19,8 @@ discard block |
||
19 | 19 | * - when true: `address[street]` |
20 | 20 | * - when false: `[address][street]` |
21 | 21 | */ |
22 | -if (! Str::hasMacro('dotsToSquareBrackets')) { |
|
23 | - Str::macro('dotsToSquareBrackets', function ($string, $ignore = [], $keyFirst = true) { |
|
22 | +if (!Str::hasMacro('dotsToSquareBrackets')) { |
|
23 | + Str::macro('dotsToSquareBrackets', function($string, $ignore = [], $keyFirst = true) { |
|
24 | 24 | $stringParts = explode('.', $string); |
25 | 25 | $result = ''; |
26 | 26 | |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | return $result; |
35 | 35 | }); |
36 | 36 | } |
37 | -if (! CrudColumn::hasMacro('withFiles')) { |
|
38 | - CrudColumn::macro('withFiles', function ($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
37 | +if (!CrudColumn::hasMacro('withFiles')) { |
|
38 | + CrudColumn::macro('withFiles', function($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
39 | 39 | $uploadDefinition = is_array($uploadDefinition) ? $uploadDefinition : []; |
40 | 40 | /** @var CrudField|CrudColumn $this */ |
41 | 41 | RegisterUploadEvents::handle($this, $uploadDefinition, 'withFiles', $subfield, $registerUploaderEvents); |
@@ -44,8 +44,8 @@ discard block |
||
44 | 44 | }); |
45 | 45 | } |
46 | 46 | |
47 | -if (! CrudField::hasMacro('withFiles')) { |
|
48 | - CrudField::macro('withFiles', function ($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
47 | +if (!CrudField::hasMacro('withFiles')) { |
|
48 | + CrudField::macro('withFiles', function($uploadDefinition = [], $subfield = null, $registerUploaderEvents = true) { |
|
49 | 49 | $uploadDefinition = is_array($uploadDefinition) ? $uploadDefinition : []; |
50 | 50 | /** @var CrudField|CrudColumn $this */ |
51 | 51 | RegisterUploadEvents::handle($this, $uploadDefinition, 'withFiles', $subfield, $registerUploaderEvents); |
@@ -54,8 +54,8 @@ discard block |
||
54 | 54 | }); |
55 | 55 | } |
56 | 56 | |
57 | -if (! CrudColumn::hasMacro('linkTo')) { |
|
58 | - CrudColumn::macro('linkTo', function (string|array|Closure $routeOrConfiguration, ?array $parameters = []): static { |
|
57 | +if (!CrudColumn::hasMacro('linkTo')) { |
|
58 | + CrudColumn::macro('linkTo', function(string | array | Closure $routeOrConfiguration, ?array $parameters = []): static { |
|
59 | 59 | $wrapper = $this->attributes['wrapper'] ?? []; |
60 | 60 | |
61 | 61 | // parse the function input to get the actual route and parameters we'll be working with |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | |
69 | 69 | // if the route is a closure, we'll just call it |
70 | 70 | if ($route instanceof Closure) { |
71 | - $wrapper['href'] = function ($crud, $column, $entry, $related_key) use ($route) { |
|
71 | + $wrapper['href'] = function($crud, $column, $entry, $related_key) use ($route) { |
|
72 | 72 | return $route($entry, $related_key, $column, $crud); |
73 | 73 | }; |
74 | 74 | $this->wrapper($wrapper); |
@@ -77,13 +77,13 @@ discard block |
||
77 | 77 | } |
78 | 78 | |
79 | 79 | // if the route doesn't exist, we'll throw an exception |
80 | - if (! $routeInstance = Route::getRoutes()->getByName($route)) { |
|
80 | + if (!$routeInstance = Route::getRoutes()->getByName($route)) { |
|
81 | 81 | throw new \Exception("Route [{$route}] not found while building the link for column [{$this->attributes['name']}]."); |
82 | 82 | } |
83 | 83 | |
84 | 84 | // calculate the parameters we'll be using for the route() call |
85 | 85 | // (eg. if there's only one parameter and user didn't provide it, we'll assume it's the entry's related key) |
86 | - $parameters = (function () use ($parameters, $routeInstance, $route) { |
|
86 | + $parameters = (function() use ($parameters, $routeInstance, $route) { |
|
87 | 87 | $expectedParameters = $routeInstance->parameterNames(); |
88 | 88 | |
89 | 89 | if (count($expectedParameters) === 0) { |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | if (count($autoInferedParameter) > 1) { |
95 | 95 | throw new \Exception("Route [{$route}] expects parameters [".implode(', ', $expectedParameters)."]. Insuficient parameters provided in column: [{$this->attributes['name']}]."); |
96 | 96 | } |
97 | - $autoInferedParameter = current($autoInferedParameter) ? [current($autoInferedParameter) => function ($entry, $related_key, $column, $crud) { |
|
97 | + $autoInferedParameter = current($autoInferedParameter) ? [current($autoInferedParameter) => function($entry, $related_key, $column, $crud) { |
|
98 | 98 | $entity = $crud->isAttributeInRelationString($column) ? Str::before($column['entity'], '.') : $column['entity']; |
99 | 99 | |
100 | 100 | return $related_key ?? $entry->{$entity}?->getKey(); |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | })(); |
105 | 105 | |
106 | 106 | // set up the wrapper href attribute |
107 | - $wrapper['href'] = function ($crud, $column, $entry, $related_key) use ($route, $parameters) { |
|
107 | + $wrapper['href'] = function($crud, $column, $entry, $related_key) use ($route, $parameters) { |
|
108 | 108 | // if the parameter is callable, we'll call it |
109 | 109 | $parameters = collect($parameters)->map(fn ($item) => is_callable($item) ? $item($entry, $related_key, $column, $crud) : $item)->toArray(); |
110 | 110 | |
@@ -123,8 +123,8 @@ discard block |
||
123 | 123 | * |
124 | 124 | * It will go to the given CrudController and get the setupRoutes() method on it. |
125 | 125 | */ |
126 | -if (! Route::hasMacro('crud')) { |
|
127 | - Route::macro('crud', function ($name, $controller) { |
|
126 | +if (!Route::hasMacro('crud')) { |
|
127 | + Route::macro('crud', function($name, $controller) { |
|
128 | 128 | // put together the route name prefix, |
129 | 129 | // as passed to the Route::group() statements |
130 | 130 | $routeName = ''; |
@@ -15,18 +15,18 @@ discard block |
||
15 | 15 | private string $crudObjectType; |
16 | 16 | |
17 | 17 | public function __construct( |
18 | - private readonly CrudField|CrudColumn $crudObject, |
|
18 | + private readonly CrudField | CrudColumn $crudObject, |
|
19 | 19 | private readonly array $uploaderConfiguration, |
20 | 20 | private readonly string $macro |
21 | 21 | ) { |
22 | 22 | $this->crudObjectType = is_a($crudObject, CrudField::class) ? 'field' : (is_a($crudObject, CrudColumn::class) ? 'column' : null); |
23 | 23 | |
24 | - if (! $this->crudObjectType) { |
|
24 | + if (!$this->crudObjectType) { |
|
25 | 25 | abort(500, 'Upload handlers only work for CrudField and CrudColumn classes.'); |
26 | 26 | } |
27 | 27 | } |
28 | 28 | |
29 | - public static function handle(CrudField|CrudColumn $crudObject, array $uploaderConfiguration, string $macro, ?array $subfield = null, ?bool $registerModelEvents = true): void |
|
29 | + public static function handle(CrudField | CrudColumn $crudObject, array $uploaderConfiguration, string $macro, ?array $subfield = null, ?bool $registerModelEvents = true): void |
|
30 | 30 | { |
31 | 31 | $instance = new self($crudObject, $uploaderConfiguration, $macro); |
32 | 32 | |
@@ -36,9 +36,9 @@ discard block |
||
36 | 36 | /******************************* |
37 | 37 | * Private methods - implementation |
38 | 38 | *******************************/ |
39 | - private function registerEvents(array|null $subfield = [], ?bool $registerModelEvents = true): void |
|
39 | + private function registerEvents(array | null $subfield = [], ?bool $registerModelEvents = true): void |
|
40 | 40 | { |
41 | - if (! empty($subfield)) { |
|
41 | + if (!empty($subfield)) { |
|
42 | 42 | $this->registerSubfieldEvent($subfield, $registerModelEvents); |
43 | 43 | |
44 | 44 | return; |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $attributes = $this->crudObject->getAttributes(); |
48 | 48 | $model = $attributes['model'] ?? get_class($this->crudObject->crud()->getModel()); |
49 | 49 | /** @var UploaderInterface */ |
50 | - $uploader = UploaderLocator::for($attributes, $this->uploaderConfiguration, $this->crudObjectType, $this->macro); |
|
50 | + $uploader = UploaderLocator::for ($attributes, $this->uploaderConfiguration, $this->crudObjectType, $this->macro); |
|
51 | 51 | |
52 | 52 | if (isset($attributes['relation_type']) && $attributes['entity'] !== false) { |
53 | 53 | $uploader = $uploader->relationship(true); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | private function registerSubfieldEvent(array $subfield, bool $registerModelEvents = true): void |
61 | 61 | { |
62 | 62 | /** @var UploaderInterface */ |
63 | - $uploader = UploaderLocator::for($subfield, $this->uploaderConfiguration, $this->crudObjectType, $this->macro); |
|
63 | + $uploader = UploaderLocator::for ($subfield, $this->uploaderConfiguration, $this->crudObjectType, $this->macro); |
|
64 | 64 | $crudObject = $this->crudObject->getAttributes(); |
65 | 65 | $uploader = $uploader->repeats($crudObject['name']); |
66 | 66 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | } |
85 | 85 | |
86 | 86 | $subfields = collect($this->crudObject->getAttributes()['subfields']); |
87 | - $subfields = $subfields->map(function ($item) use ($subfield, $uploader) { |
|
87 | + $subfields = $subfields->map(function($item) use ($subfield, $uploader) { |
|
88 | 88 | if ($item['name'] === $subfield['name']) { |
89 | 89 | $item['upload'] = true; |
90 | 90 | $item['disk'] = $uploader->getDisk(); |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | } |
115 | 115 | |
116 | 116 | if ($this->crudObjectType === 'field') { |
117 | - $model::saving(function ($entry) use ($uploader) { |
|
117 | + $model::saving(function($entry) use ($uploader) { |
|
118 | 118 | $updatedCountKey = 'uploaded_'.($uploader->getRepeatableContainerName() ?? $uploader->getName()).'_count'; |
119 | 119 | |
120 | 120 | CRUD::set($updatedCountKey, CRUD::get($updatedCountKey) ?? 0); |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | // is not called in pivot models when loading the relations. |
134 | 134 | $retrieveModel = $this->getModelForRetrieveEvent($model, $uploader); |
135 | 135 | |
136 | - $retrieveModel::retrieved(function ($entry) use ($uploader) { |
|
136 | + $retrieveModel::retrieved(function($entry) use ($uploader) { |
|
137 | 137 | if ($entry->translationEnabled()) { |
138 | 138 | $locale = request('_locale', \App::getLocale()); |
139 | 139 | if (in_array($locale, array_keys($entry->getAvailableLocales()))) { |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | }); |
145 | 145 | } |
146 | 146 | |
147 | - $model::deleting(function ($entry) use ($uploader) { |
|
147 | + $model::deleting(function($entry) use ($uploader) { |
|
148 | 148 | $uploader->deleteUploadedFiles($entry); |
149 | 149 | }); |
150 | 150 | |
@@ -166,13 +166,13 @@ discard block |
||
166 | 166 | $customUploader = isset($uploaderConfiguration['uploader']) && class_exists($uploaderConfiguration['uploader']); |
167 | 167 | |
168 | 168 | if ($customUploader) { |
169 | - return $uploaderConfiguration['uploader']::for($crudObject, $uploaderConfiguration); |
|
169 | + return $uploaderConfiguration['uploader']::for ($crudObject, $uploaderConfiguration); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | $uploader = app('UploadersRepository')->hasUploadFor($crudObject['type'], $this->macro); |
173 | 173 | |
174 | 174 | if ($uploader) { |
175 | - return app('UploadersRepository')->getUploadFor($crudObject['type'], $this->macro)::for($crudObject, $uploaderConfiguration); |
|
175 | + return app('UploadersRepository')->getUploadFor($crudObject['type'], $this->macro)::for ($crudObject, $uploaderConfiguration); |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | throw new Exception('Undefined upload type for '.$this->crudObjectType.' type: '.$crudObject['type']); |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | |
189 | 189 | private function getSubfieldModel(array $subfield, UploaderInterface $uploader) |
190 | 190 | { |
191 | - if (! $uploader->isRelationship()) { |
|
191 | + if (!$uploader->isRelationship()) { |
|
192 | 192 | return $subfield['baseModel'] ?? get_class(app('crud')->getModel()); |
193 | 193 | } |
194 | 194 | |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | |
202 | 202 | private function getModelForRetrieveEvent(string $model, UploaderInterface $uploader) |
203 | 203 | { |
204 | - if (! $uploader->isRelationship()) { |
|
204 | + if (!$uploader->isRelationship()) { |
|
205 | 205 | return $model; |
206 | 206 | } |
207 | 207 |
@@ -6,14 +6,14 @@ |
||
6 | 6 | |
7 | 7 | final class UploaderLocator |
8 | 8 | { |
9 | - public static function for(array $crudObject, array $uploaderConfiguration, string $crudObjectType, string $macro): UploaderInterface |
|
9 | + public static function for (array $crudObject, array $uploaderConfiguration, string $crudObjectType, string $macro): UploaderInterface |
|
10 | 10 | { |
11 | 11 | if (isset($uploaderConfiguration['uploader']) && class_exists($uploaderConfiguration['uploader'])) { |
12 | - return $uploaderConfiguration['uploader']::for($crudObject, $uploaderConfiguration); |
|
12 | + return $uploaderConfiguration['uploader']::for ($crudObject, $uploaderConfiguration); |
|
13 | 13 | } |
14 | 14 | |
15 | 15 | if (app('UploadersRepository')->hasUploadFor($crudObject['type'], $macro)) { |
16 | - return app('UploadersRepository')->getUploadFor($crudObject['type'], $macro)::for($crudObject, $uploaderConfiguration); |
|
16 | + return app('UploadersRepository')->getUploadFor($crudObject['type'], $macro)::for ($crudObject, $uploaderConfiguration); |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | throw new Exception('Undefined upload type for '.$crudObjectType.' type: '.$crudObject['type']); |