Passed
Push — master ( 62bd49...150f2b )
by Nicolaas
10:01
created
src/Api/DefaultDashboardProvider.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -252,12 +252,12 @@  discard block
 block discarded – undo
252 252
                             $title = $title['title'];
253 253
                             $model = $title['dataClass'] ?? $model;
254 254
                         }
255
-                        if (! class_exists($model)) {
255
+                        if (!class_exists($model)) {
256 256
                             continue;
257 257
                         }
258 258
                         $obj = Injector::inst()->get($model);
259 259
                         if ($obj && $obj->canView()) {
260
-                            if (! $groupAdded) {
260
+                            if (!$groupAdded) {
261 261
                                 DashboardWelcomeQuicklinks::add_group($groupCode, $ma->menu_title(), 100);
262 262
                                 $groupAdded = true;
263 263
                             }
@@ -265,14 +265,14 @@  discard block
 block discarded – undo
265 265
                             $ma = ReflectionHelper::allowAccessToProperty(get_class($ma), 'modelClass');
266 266
                             $ma->modelClass = $model;
267 267
                             $list = $ma->getList();
268
-                            if (! $list) {
268
+                            if (!$list) {
269 269
                                 $list = $model::get();
270 270
                             }
271 271
                             $objectCount = $list->count();
272 272
                             if ($objectCount === 1) {
273 273
                                 $baseTable = Injector::inst()->get($model)->baseTable();
274 274
                                 $obj = DataObject::get_one($model, [$baseTable . '.ClassName' => $model]);
275
-                                if (! $obj) {
275
+                                if (!$obj) {
276 276
                                     $obj = DataObject::get_one($model);
277 277
                                 }
278 278
                                 if ($obj && $obj->hasMethod('CMSEditLink')) {
@@ -288,7 +288,7 @@  discard block
 block discarded – undo
288 288
                             if ($obj->hasMethod('CMSListLink')) {
289 289
                                 $link = $obj->CMSListLink();
290 290
                             }
291
-                            if (! $link) {
291
+                            if (!$link) {
292 292
                                 $link = $ma->getLinkForModelTab($model);
293 293
                             }
294 294
                             $titleContainsObjectCount = strpos($title, ' (' . $objectCount . ')');
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
 
328 328
     protected function sortByCountAndTitle(array $array): array
329 329
     {
330
-        usort($array, function ($a, $b) {
330
+        usort($array, function($a, $b) {
331 331
             $countComparison = $b['Count'] <=> $a['Count'];
332 332
             if ($countComparison === 0) {
333 333
                 return $a['Title'] <=> $b['Title'];
Please login to merge, or discard this patch.
src/Admin/DashboardWelcomeQuicklinks.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     public static function get_base_phrase(string $phrase): string
60 60
     {
61
-        if (! in_array($phrase, ['add', 'review', 'edit', 'more'])) {
61
+        if (!in_array($phrase, ['add', 'review', 'edit', 'more'])) {
62 62
             user_error('Phrase must be one of "add", "review", or "edit"', E_USER_ERROR);
63 63
         }
64 64
         $phrase = Config::inst()->get(static::class, $phrase . '_phrase');
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
 
190 190
             usort(
191 191
                 $shortcuts,
192
-                function ($a, $b) {
192
+                function($a, $b) {
193 193
                     $b['SortOrder'] ?? 0;
194 194
                     $a['SortOrder'] ?? 0;
195 195
                 }
@@ -197,11 +197,11 @@  discard block
 block discarded – undo
197 197
 
198 198
             foreach ($shortcuts as $groupCode => $groupDetails) {
199 199
                 $colour = '';
200
-                if (! empty($groupDetails['Colour'])) {
200
+                if (!empty($groupDetails['Colour'])) {
201 201
                     $colour = 'style="background-color: ' . $groupDetails['Colour'] . '"';
202 202
                 }
203 203
                 $icon = '';
204
-                if (! empty($groupDetails['IconClass'])) {
204
+                if (!empty($groupDetails['IconClass'])) {
205 205
                     $icon = '<i class="' . $groupDetails['IconClass'] . '"></i> ';
206 206
                 }
207 207
                 $html .= '
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
                     <div class="entries">';
213 213
                 $items = $groupDetails['Items'] ?? [];
214 214
                 foreach ($items as $pos => $entry) {
215
-                    if (! empty($entry['Link']) && class_exists($entry['Link'])) {
215
+                    if (!empty($entry['Link']) && class_exists($entry['Link'])) {
216 216
                         $obj = Injector::inst()->get($entry['Link']);
217 217
                         if ($obj instanceof DataObject) {
218 218
                             $entry['Link'] = DataObject::get_one($entry['Link'])->CMSEditLink();
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
         return $array;
276 276
     }
277 277
 
278
-    protected function makeShortCut(array $entry, ?bool $isInsideLink = false): LiteralField|string
278
+    protected function makeShortCut(array $entry, ?bool $isInsideLink = false): LiteralField | string
279 279
     {
280 280
         $title = (string) $entry['Title'];
281 281
         $link = (string) $entry['Link'];
Please login to merge, or discard this patch.