@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | |
20 | 20 | public static function fromKeys($keys) |
21 | 21 | { |
22 | - $keys = (array) $keys; |
|
22 | + $keys = (array)$keys; |
|
23 | 23 | $collection = collect(); |
24 | 24 | |
25 | 25 | /** @var Managers */ |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | public static function fromTags($tags) |
35 | 35 | { |
36 | - $tags = (array) $tags; |
|
36 | + $tags = (array)$tags; |
|
37 | 37 | $collection = collect(); |
38 | 38 | |
39 | 39 | /** @var Managers */ |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | |
53 | 53 | private static function fromManagers(Collection $collection) |
54 | 54 | { |
55 | - return new static(...$collection->reject(function ($manager) { |
|
55 | + return new static(...$collection->reject(function($manager) { |
|
56 | 56 | return !$manager->can('index'); |
57 | - })->map(function ($manager) { |
|
57 | + })->map(function($manager) { |
|
58 | 58 | return new NavItem($manager->details()->plural, $manager->route('index'), [ |
59 | 59 | 'key' => $manager->details()->key, |
60 | 60 | 'tags' => app(Register::class)->filterByKey($manager->details()->key)->first()->tags() |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | public function rejectKeys($keys) |
66 | 66 | { |
67 | - $keys = (array) $keys; |
|
67 | + $keys = (array)$keys; |
|
68 | 68 | |
69 | 69 | foreach ($this->items as $k => $item) { |
70 | 70 | if (in_array($item->details('key', ''), $keys)) { |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | public function rejectTags($tags) |
79 | 79 | { |
80 | - $tags = (array) $tags; |
|
80 | + $tags = (array)$tags; |
|
81 | 81 | |
82 | 82 | foreach ($this->items as $k => $item) { |
83 | 83 | if (count(array_intersect($item->details('tags', []), $tags)) > 0) { |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | $output = ''; |
120 | 120 | |
121 | 121 | foreach ($this->items as $item) { |
122 | - $output .= '<a class="' . (isActiveUrl($item->url()) ? 'active' : '') . '" href="'.$item->url().'">'; |
|
122 | + $output .= '<a class="'.(isActiveUrl($item->url()) ? 'active' : '').'" href="'.$item->url().'">'; |
|
123 | 123 | $output .= $title ?? ucfirst($item->title()); |
124 | 124 | $output .= '</a>'; |
125 | 125 | } |
@@ -146,14 +146,14 @@ discard block |
||
146 | 146 | |
147 | 147 | $items = ''; |
148 | 148 | foreach ($this->items as $item) { |
149 | - $items .= '<a class="' . (isActiveUrl($item->url()) ? 'active' : '') . '" href="'.$item->url().'">'; |
|
149 | + $items .= '<a class="'.(isActiveUrl($item->url()) ? 'active' : '').'" href="'.$item->url().'">'; |
|
150 | 150 | $items .= $item->title(); |
151 | 151 | $items .= '</a>'; |
152 | 152 | } |
153 | 153 | |
154 | 154 | // Surround within vue dropdown |
155 | 155 | $output = '<dropdown>'; |
156 | - $output .= '<span class="center-y nav-item" slot="trigger" slot-scope="{ toggle, isActive }" @click="toggle">'. ($title ?? 'Collecties') .'</span>'; |
|
156 | + $output .= '<span class="center-y nav-item" slot="trigger" slot-scope="{ toggle, isActive }" @click="toggle">'.($title ?? 'Collecties').'</span>'; |
|
157 | 157 | $output .= '<div v-cloak class="dropdown-box inset-s">'; |
158 | 158 | $output .= $items; |
159 | 159 | $output .= '</div>'; |
@@ -83,12 +83,12 @@ |
||
83 | 83 | } |
84 | 84 | |
85 | 85 | $manager = new \ReflectionClass($managerClass); |
86 | - if (! $manager->implementsInterface(Manager::class)) { |
|
86 | + if (!$manager->implementsInterface(Manager::class)) { |
|
87 | 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 | - if (! $model->implementsInterface(ManagedModel::class)) { |
|
91 | + if (!$model->implementsInterface(ManagedModel::class)) { |
|
92 | 92 | throw new \InvalidArgumentException('Class ['.$modelClass.'] is expected to implement the ['.ManagedModel::class.'] contract.'); |
93 | 93 | } |
94 | 94 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | public function findAll(): Collection |
73 | 73 | { |
74 | - return $this->model->published()->get()->map(function ($model) { |
|
74 | + return $this->model->published()->get()->map(function($model) { |
|
75 | 75 | return $this->managers->findByModel($model); |
76 | 76 | }); |
77 | 77 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | |
94 | 94 | public function guard($verb): Assistant |
95 | 95 | { |
96 | - if (! $this->can($verb)) { |
|
96 | + if (!$this->can($verb)) { |
|
97 | 97 | NotAllowedManagerRoute::notAllowedVerb($verb, $this->manager); |
98 | 98 | } |
99 | 99 | |
@@ -111,11 +111,11 @@ discard block |
||
111 | 111 | |
112 | 112 | $class = $this->isPublished() ? 'text-success' : 'text-error'; |
113 | 113 | |
114 | - $statusAsLabel = '<span class="'. $class .'"><em>' . $label . '</em></span>'; |
|
114 | + $statusAsLabel = '<span class="'.$class.'"><em>'.$label.'</em></span>'; |
|
115 | 115 | |
116 | - if(!$plain && $this->hasPreviewUrl()) |
|
116 | + if (!$plain && $this->hasPreviewUrl()) |
|
117 | 117 | { |
118 | - $statusAsLabel = '<a href="'.$this->previewUrl().'" target="_blank">'. $statusAsLabel .'</a>'; |
|
118 | + $statusAsLabel = '<a href="'.$this->previewUrl().'" target="_blank">'.$statusAsLabel.'</a>'; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | return $statusAsLabel; |
@@ -125,9 +125,9 @@ |
||
125 | 125 | { |
126 | 126 | if ($this->isPublished()) { |
127 | 127 | return 'online'; |
128 | - }elseif ($this->isDraft()) { |
|
128 | + } elseif ($this->isDraft()) { |
|
129 | 129 | return 'offline'; |
130 | - }elseif ($this->manager->isAssistedBy('archive') && $this->manager->assistant('archive')->isArchived()) { |
|
130 | + } elseif ($this->manager->isAssistedBy('archive') && $this->manager->assistant('archive')->isArchived()) { |
|
131 | 131 | return 'gearchiveerd'; |
132 | 132 | } |
133 | 133 |
@@ -63,11 +63,11 @@ |
||
63 | 63 | |
64 | 64 | public static function managedModelKey(): string |
65 | 65 | { |
66 | - if(isset(static::$managedModelKey)){ |
|
66 | + if (isset(static::$managedModelKey)) { |
|
67 | 67 | return static::$managedModelKey; |
68 | 68 | } |
69 | 69 | |
70 | - throw new \Exception('Missing required static property \'managedModelKey\' on ' . static::class. '.'); |
|
70 | + throw new \Exception('Missing required static property \'managedModelKey\' on '.static::class.'.'); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | |
81 | 81 | public static function managedModelKey(): string |
82 | 82 | { |
83 | - if(isset(static::$managedModelKey)){ |
|
83 | + if (isset(static::$managedModelKey)) { |
|
84 | 84 | return static::$managedModelKey; |
85 | 85 | } |
86 | 86 | |
87 | - throw new \Exception('Missing required static property \'managedModelKey\' on ' . static::class. '.'); |
|
87 | + throw new \Exception('Missing required static property \'managedModelKey\' on '.static::class.'.'); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
@@ -124,9 +124,9 @@ discard block |
||
124 | 124 | public function flatReferenceLabel(): string |
125 | 125 | { |
126 | 126 | if ($this->exists) { |
127 | - $status = ! $this->isPublished() ? ' [' . $this->statusAsPlainLabel().']' : null; |
|
127 | + $status = !$this->isPublished() ? ' ['.$this->statusAsPlainLabel().']' : null; |
|
128 | 128 | |
129 | - return $this->title ? $this->title . $status : ''; |
|
129 | + return $this->title ? $this->title.$status : ''; |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | return ''; |