@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $targetModel = Morphables::instance($targetUrlRecord->model_type)->find($targetUrlRecord->model_id); |
40 | 40 | |
41 | 41 | if (!$targetModel) { |
42 | - throw new ArchivedUrlException('Corrupt target model for this url request. Model by reference [' . $targetUrlRecord->model_type . '@' . $targetUrlRecord->model_id . '] has probably been archived or deleted.'); |
|
42 | + throw new ArchivedUrlException('Corrupt target model for this url request. Model by reference ['.$targetUrlRecord->model_type.'@'.$targetUrlRecord->model_id.'] has probably been archived or deleted.'); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | return static::createRedirect($targetModel->url($locale)); |
@@ -49,14 +49,14 @@ discard block |
||
49 | 49 | } |
50 | 50 | |
51 | 51 | if (!$model) { |
52 | - throw new ArchivedUrlException('Corrupt target model for this url request. Model by reference [' . $urlRecord->model_type . '@' . $urlRecord->model_id . '] has probably been archived or deleted.'); |
|
52 | + throw new ArchivedUrlException('Corrupt target model for this url request. Model by reference ['.$urlRecord->model_type.'@'.$urlRecord->model_id.'] has probably been archived or deleted.'); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | if (method_exists($model, 'isPublished') && !$model->isPublished()) { |
56 | 56 | |
57 | 57 | /** When admin is logged in and this request is in preview mode, we allow the view */ |
58 | 58 | if (!PreviewMode::fromRequest()->check()) { |
59 | - throw new NotFoundHttpException('Model found for request [' . $slug . '] but it is not published.'); |
|
59 | + throw new NotFoundHttpException('Model found for request ['.$slug.'] but it is not published.'); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | } |
68 | 68 | } |
69 | 69 | |
70 | - throw new NotFoundHttpException('No url or model found for request [' . $slug . '] for locale [' . $locale . '].'); |
|
70 | + throw new NotFoundHttpException('No url or model found for request ['.$slug.'] for locale ['.$locale.'].'); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | private static function createRedirect(string $url) |
@@ -40,9 +40,9 @@ |
||
40 | 40 | if ($request->filled('template')) { |
41 | 41 | $this->applyTemplate->handle( |
42 | 42 | FlatReferenceFactory::fromString($request->input('template'))->className(), |
43 | - (string) FlatReferenceFactory::fromString($request->input('template'))->id(), |
|
43 | + (string)FlatReferenceFactory::fromString($request->input('template'))->id(), |
|
44 | 44 | get_class($manager->existingModel()), |
45 | - (string) $manager->existingModel()->id |
|
45 | + (string)$manager->existingModel()->id |
|
46 | 46 | ); |
47 | 47 | } |
48 | 48 |
@@ -51,7 +51,7 @@ |
||
51 | 51 | public function assistant(string $assistantKey): Assistant |
52 | 52 | { |
53 | 53 | if (!$this->isAssistedBy($assistantKey)) { |
54 | - throw new MissingAssistant('No assistant [' . $assistantKey . '] registered on manager ' . static::class); |
|
54 | + throw new MissingAssistant('No assistant ['.$assistantKey.'] registered on manager '.static::class); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | $instance = app($this->getAssistantClass($assistantKey)); |
@@ -136,7 +136,7 @@ |
||
136 | 136 | private function registrationMustExistConstraint(string $key, $value, $registrations): void |
137 | 137 | { |
138 | 138 | if (empty($registrations) && count($registrations) != $this->registrations) { |
139 | - throw new NonRegisteredManager('No manager found for ' . $key . ' [' . print_r($value, true) . ']. Did you perhaps forgot to register the manager?'); |
|
139 | + throw new NonRegisteredManager('No manager found for '.$key.' ['.print_r($value, true).']. Did you perhaps forgot to register the manager?'); |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | } |
@@ -75,21 +75,21 @@ |
||
75 | 75 | private function validate($managerClass, $modelClass) |
76 | 76 | { |
77 | 77 | if (!class_exists($managerClass)) { |
78 | - throw new \InvalidArgumentException('Manager class [' . $managerClass . '] is an invalid class reference. Please make sure the class exists.'); |
|
78 | + throw new \InvalidArgumentException('Manager class ['.$managerClass.'] is an invalid class reference. Please make sure the class exists.'); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | if (!class_exists($modelClass)) { |
82 | - throw new \InvalidArgumentException('Model class [' . $modelClass . '] is an invalid model reference. Please make sure the class exists.'); |
|
82 | + throw new \InvalidArgumentException('Model class ['.$modelClass.'] is an invalid model reference. Please make sure the class exists.'); |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | $manager = new \ReflectionClass($managerClass); |
86 | 86 | if (!$manager->implementsInterface(Manager::class)) { |
87 | - throw new \InvalidArgumentException('Class [' . $managerClass . '] is expected to implement the [' . Manager::class . '] contract.'); |
|
87 | + throw new \InvalidArgumentException('Class ['.$managerClass.'] is expected to implement the ['.Manager::class.'] contract.'); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | $model = new \ReflectionClass($modelClass); |
91 | 91 | if (!$model->implementsInterface(ManagedModel::class)) { |
92 | - throw new \InvalidArgumentException('Class [' . $modelClass . '] is expected to implement the [' . ManagedModel::class . '] contract.'); |
|
92 | + throw new \InvalidArgumentException('Class ['.$modelClass.'] is expected to implement the ['.ManagedModel::class.'] contract.'); |
|
93 | 93 | } |
94 | 94 | } |
95 | 95 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | $availableChildren = AvailableChildren::forParent($model); |
51 | 51 | |
52 | - $modules = $availableChildren->onlyModules()->reject(function ($module) use ($model) { |
|
52 | + $modules = $availableChildren->onlyModules()->reject(function($module) use ($model) { |
|
53 | 53 | return $module->owner_id != null && $module->owner_id != $model->id; |
54 | 54 | }); |
55 | 55 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | $available_sets = FlatReferencePresenter::toGroupedSelectValues($availableChildren->onlySets())->toArray(); |
59 | 59 | |
60 | 60 | // Current sections |
61 | - $sections = $model->children()->map(function ($section, $index) { |
|
61 | + $sections = $model->children()->map(function($section, $index) { |
|
62 | 62 | if ($section instanceof TranslatableContract) { |
63 | 63 | $section->injectTranslationForForm(); |
64 | 64 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | { |
51 | 51 | $registrations = collect($this->register->filterByTag($tag)->all()); |
52 | 52 | |
53 | - return $registrations->map(function ($registration) { |
|
53 | + return $registrations->map(function($registration) { |
|
54 | 54 | return $this->instance($registration); |
55 | 55 | }); |
56 | 56 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | { |
66 | 66 | $registrations = collect($this->register->filterByTag($tag)->all()); |
67 | 67 | |
68 | - return $registrations->map(function ($registration) { |
|
68 | + return $registrations->map(function($registration) { |
|
69 | 69 | return $this->instance($registration)->details(); |
70 | 70 | }); |
71 | 71 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | //return array with group name and values |
77 | 77 | $grouped = []; |
78 | 78 | |
79 | - $managers = $managers->map(function (Manager $item) { |
|
79 | + $managers = $managers->map(function(Manager $item) { |
|
80 | 80 | return [ |
81 | 81 | 'id' => $item->details()->id, |
82 | 82 | 'group' => $item->details()->plural, |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | { |
91 | 91 | $registrations = collect($this->register->all()); |
92 | 92 | |
93 | - return $registrations->map(function ($registration) { |
|
93 | + return $registrations->map(function($registration) { |
|
94 | 94 | return $this->instance($registration); |
95 | 95 | }); |
96 | 96 | } |
@@ -40,11 +40,11 @@ |
||
40 | 40 | |
41 | 41 | public static function notAllowedAction($action, string $managerKey) |
42 | 42 | { |
43 | - return new self('Not allowed to ' . $action . ' a model. ' . ucfirst($action) . ' route is not allowed by the ' . $managerKey . ' manager.'); |
|
43 | + return new self('Not allowed to '.$action.' a model. '.ucfirst($action).' route is not allowed by the '.$managerKey.' manager.'); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | public static function notAllowedPermission($permission, string $managerKey) |
47 | 47 | { |
48 | - return new self('Not allowed permission for ' . $permission . ' on a model as managed by the ' . $managerKey . ' manager.'); |
|
48 | + return new self('Not allowed permission for '.$permission.' on a model as managed by the '.$managerKey.' manager.'); |
|
49 | 49 | } |
50 | 50 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | return $this->indexPagination($builder); |
92 | 92 | } |
93 | 93 | |
94 | - return $builder->get()->map(function ($model) { |
|
94 | + return $builder->get()->map(function($model) { |
|
95 | 95 | return (new static($this->registration))->manage($model); |
96 | 96 | }); |
97 | 97 | } |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | { |
120 | 120 | $paginator = $builder->paginate($this->pageCount); |
121 | 121 | |
122 | - $modifiedCollection = $builder->paginate($this->pageCount)->getCollection()->transform(function ($model) { |
|
122 | + $modifiedCollection = $builder->paginate($this->pageCount)->getCollection()->transform(function($model) { |
|
123 | 123 | return (new static($this->registration))->manage($model); |
124 | 124 | }); |
125 | 125 | |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | |
236 | 236 | public function editFields(): Fields |
237 | 237 | { |
238 | - return $this->fieldsWithAssistantFields()->map(function (Field $field) { |
|
238 | + return $this->fieldsWithAssistantFields()->map(function(Field $field) { |
|
239 | 239 | return $field->model($this->model); |
240 | 240 | }); |
241 | 241 | } |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | static::$bootedTraitMethods[$baseMethod] = []; |
329 | 329 | |
330 | 330 | foreach (class_uses_recursive($class) as $trait) { |
331 | - $method = class_basename($trait) . ucfirst($baseMethod); |
|
331 | + $method = class_basename($trait).ucfirst($baseMethod); |
|
332 | 332 | |
333 | 333 | if (method_exists($class, $method) && !in_array($method, static::$bootedTraitMethods[$baseMethod])) { |
334 | 334 | static::$bootedTraitMethods[$baseMethod][] = lcfirst($method); |