Test Setup Failed
Push — a-simpler-manager ( 19ed38...0806fa )
by Ben
07:03
created
src/Old/PageBuilder/Relations/Relation.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             ->orderBy('sort', 'ASC')
55 55
             ->get();
56 56
 
57
-        return $relations->map(function (Relation $relation) {
57
+        return $relations->map(function(Relation $relation) {
58 58
             $parent = $relation->parent;
59 59
             $parent->relation = $relation;
60 60
 
@@ -70,13 +70,13 @@  discard block
 block discarded – undo
70 70
             ->orderBy('sort', 'ASC')
71 71
             ->get();
72 72
 
73
-        return $relations->map(function (Relation $relation) use ($parent_type, $parent_id) {
73
+        return $relations->map(function(Relation $relation) use ($parent_type, $parent_id) {
74 74
 
75 75
             // It could be that the child itself is soft-deleted, if this is the case, we will ignore it and move on.
76 76
             if (!$child = $relation->child) {
77 77
                 if (!$relation->child()->withTrashed()->first()) {
78 78
                     // If we cannot retrieve it then the relation type is possibly wrong, this is a database inconsistency and should be addressed
79
-                    throw new \DomainException('Corrupt relation reference. Related child [' . $relation->child_type . '@' . $relation->child_id . '] could not be retrieved for parent [' . $parent_type . '@' . $parent_id . ']. Make sure the morph key can resolve to a valid class.');
79
+                    throw new \DomainException('Corrupt relation reference. Related child ['.$relation->child_type.'@'.$relation->child_id.'] could not be retrieved for parent ['.$parent_type.'@'.$parent_id.']. Make sure the morph key can resolve to a valid class.');
80 80
                 }
81 81
 
82 82
                 return null;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         })
89 89
 
90 90
             // In case of soft-deleted entries, this will be null and should be ignored. We make sure that keys are reset in case of removed child
91
-            ->reject(function ($child) {
91
+            ->reject(function($child) {
92 92
                 return is_null($child);
93 93
             })
94 94
             ->values();
@@ -105,10 +105,10 @@  discard block
 block discarded – undo
105 105
 
106 106
     public static function deleteRelationsOf($type, $id)
107 107
     {
108
-        $relations = static::where(function ($query) use ($type, $id) {
108
+        $relations = static::where(function($query) use ($type, $id) {
109 109
             return $query->where('parent_type', $type)
110 110
                 ->where('parent_id', $id);
111
-        })->orWhere(function ($query) use ($type, $id) {
111
+        })->orWhere(function($query) use ($type, $id) {
112 112
             return $query->where('child_type', $type)
113 113
                 ->where('child_id', $id);
114 114
         })->get();
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
     public static function deleteAllChildRelationsOf($type, $id)
122 122
     {
123
-        $relations = static::where(function ($query) use ($type, $id) {
123
+        $relations = static::where(function($query) use ($type, $id) {
124 124
             return $query->where('parent_type', $type)
125 125
                 ->where('parent_id', $id);
126 126
         })->get();
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
     public static function deleteAllParentRelationsOf($type, $id)
134 134
     {
135
-        $relations = static::where(function ($query) use ($type, $id) {
135
+        $relations = static::where(function($query) use ($type, $id) {
136 136
             return $query->where('child_type', $type)
137 137
                 ->where('child_id', $id);
138 138
         })->get();
Please login to merge, or discard this patch.
src/Old/PageBuilder/Relations/AvailableChildren.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,14 +34,14 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function onlyModules(): Collection
36 36
     {
37
-        return $this->collection()->reject(function ($item) {
37
+        return $this->collection()->reject(function($item) {
38 38
             return ($item instanceof ActsAsParent);
39 39
         });
40 40
     }
41 41
 
42 42
     public function onlyPages(): Collection
43 43
     {
44
-        return $this->collection()->filter(function ($item) {
44
+        return $this->collection()->filter(function($item) {
45 45
             return ($item instanceof ActsAsParent);
46 46
         });
47 47
     }
@@ -96,12 +96,12 @@  discard block
 block discarded – undo
96 96
 //        }
97 97
 
98 98
         // Remove duplicate models
99
-        $collection = $collection->unique(function ($model) {
99
+        $collection = $collection->unique(function($model) {
100 100
             return (new ModelReference(get_class($model), $model->id))->get();
101 101
         });
102 102
 
103 103
         // Filter out our parent
104
-        return $this->collection = $collection->reject(function ($item) {
104
+        return $this->collection = $collection->reject(function($item) {
105 105
             return ($item instanceof $this->parent && $item->id == $this->parent->id);
106 106
         })->values();
107 107
     }
Please login to merge, or discard this patch.
src/Old/Snippets/SnippetCollection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             }
37 37
         }
38 38
 
39
-        return static::$loadedSnippets = new self($files->map(function (SplFileInfo $file) {
39
+        return static::$loadedSnippets = new self($files->map(function(SplFileInfo $file) {
40 40
             $path = $file->getRealPath();
41 41
 
42 42
             if (0 === strpos($path, resource_path('views')) && false !== strpos($file->getBasename(), '.blade.php')) {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $loadedSnippets = static::load();
56 56
 
57
-        return $loadedSnippets->first(function (Snippet $snippet) use ($key) {
57
+        return $loadedSnippets->first(function(Snippet $snippet) use ($key) {
58 58
             return $snippet->key() == $key;
59 59
         });
60 60
     }
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
     public function toClips(): array
87 87
     {
88
-        return $this->map(function ($snippet) {
88
+        return $this->map(function($snippet) {
89 89
             return [$snippet->label(), $snippet->placeholder()];
90 90
         })->toArray();
91 91
     }
Please login to merge, or discard this patch.
src/Old/Snippets/SnippetParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
             return $value;
13 13
         }
14 14
 
15
-        $value = preg_replace_callback(static::$pattern, function ($matches) {
15
+        $value = preg_replace_callback(static::$pattern, function($matches) {
16 16
 
17 17
             // First entry of matches contains our full captured group, which we want to replace.
18 18
             // Second entry is the text itself, without the brackets
Please login to merge, or discard this patch.
src/Site/Sitemap/SitemapXml.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,11 +76,11 @@  discard block
 block discarded – undo
76 76
         $models = UrlRecord::allOnlineModels($locale);
77 77
 
78 78
         $this->urls = $models
79
-            ->reject(function (ProvidesUrl $model) use ($locale) {
79
+            ->reject(function(ProvidesUrl $model) use ($locale) {
80 80
                 // In case the url is not found or present for given locale.
81 81
                 return !$model->url($locale);
82 82
             })
83
-            ->map(function (ProvidesUrl $model) use ($locale, $alternateLocales) {
83
+            ->map(function(ProvidesUrl $model) use ($locale, $alternateLocales) {
84 84
                 $url = $model->url($locale);
85 85
 
86 86
                 $alternateUrls = [];
@@ -101,12 +101,12 @@  discard block
 block discarded – undo
101 101
     {
102 102
         $pool = new Pool($this->httpClient, $this->crawlableUrlGenerator(), [
103 103
             'concurrency' => 5,
104
-            'fulfilled' => function (Response $response, $index) {
104
+            'fulfilled' => function(Response $response, $index) {
105 105
                 if ($response->getStatusCode() !== \Symfony\Component\HttpFoundation\Response::HTTP_OK) {
106 106
                     unset($this->urls[$index]);
107 107
                 }
108 108
             },
109
-            'rejected' => function (RequestException $reason, $index) {
109
+            'rejected' => function(RequestException $reason, $index) {
110 110
                 unset($this->urls[$index]);
111 111
             },
112 112
         ]);
Please login to merge, or discard this patch.
src/Site/Sitemap/SitemapFiles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     {
29 29
         $files = $this->filesystem->files($directory);
30 30
 
31
-        return collect($files)->filter(function ($file) {
31
+        return collect($files)->filter(function($file) {
32 32
             return (Str::startsWith($file->getFileName(), 'sitemap-') && Str::endsWith($file->getFileName(), '.xml'));
33 33
         });
34 34
     }
Please login to merge, or discard this patch.
src/Site/Urls/Controllers/RemoveRedirectController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,11 +18,11 @@
 block discarded – undo
18 18
         $urlRecord = UrlRecord::find($id);
19 19
 
20 20
         if (!$urlRecord) {
21
-            return response()->json(['No url record found by id ' . $id], 500);
21
+            return response()->json(['No url record found by id '.$id], 500);
22 22
         }
23 23
 
24
-        if (! $urlRecord->isRedirect()) {
25
-            return response()->json(['Url with id ' . $id . ' is not a redirect'], 500);
24
+        if (!$urlRecord->isRedirect()) {
25
+            return response()->json(['Url with id '.$id.' is not a redirect'], 500);
26 26
         }
27 27
 
28 28
         $this->pointChildRedirectsToParent($urlRecord, $urlRecord->redirect_id);
Please login to merge, or discard this patch.
src/Site/Urls/Controllers/CheckLinkController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     public function check(Request $request)
17 17
     {
18 18
         /** @var ProvidesUrl|Model $model */
19
-        $model = (new ModelReference($request->modelClass, (int) $request->modelId))->instance();
19
+        $model = (new ModelReference($request->modelClass, (int)$request->modelId))->instance();
20 20
 
21 21
         // Trim slashes if any
22 22
         $slug = ($request->slug !== '/') ? trim($request->slug, '/') : $request->slug;
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         if ($urlRecord->isRedirect()) {
41 41
             return 'Deze link bestaat reeds als redirect. Deze redirect zal bijgevolg worden verwijderd.';
42 42
         }
43
-        return 'Deze link bestaat reeds. Kies een andere of <a target="_blank" href="' . $this->editRouteOfOtherModel($urlRecord) . '">pas de andere pagina aan</a>.';
43
+        return 'Deze link bestaat reeds. Kies een andere of <a target="_blank" href="'.$this->editRouteOfOtherModel($urlRecord).'">pas de andere pagina aan</a>.';
44 44
     }
45 45
 
46 46
     private function editRouteOfOtherModel(UrlRecord $urlRecord): string
Please login to merge, or discard this patch.
src/Site/Urls/MemoizedUrlRecord.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             ->first();
37 37
 
38 38
         if (!$record) {
39
-            throw new UrlRecordNotFound('No url record found for model [' . $model->getMorphClass() . '@' . $model->id . '] for locale [' . $locale . '].');
39
+            throw new UrlRecordNotFound('No url record found for model ['.$model->getMorphClass().'@'.$model->id.'] for locale ['.$locale.'].');
40 40
         }
41 41
 
42 42
         return $record;
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
     public static function getByModel(Model $model)
46 46
     {
47
-        return chiefMemoize('url-records-get-by-model', function ($model) {
47
+        return chiefMemoize('url-records-get-by-model', function($model) {
48 48
             return parent::getByModel($model);
49 49
         }, [$model]);
50 50
     }
Please login to merge, or discard this patch.