Test Failed
Push — develop ( d71559...359c84 )
by Brent
06:20 queued 17s
created
src/Stitcher/Task/PartialParse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
         CollectionAdapter::setFilterId($matchingRoute['id'] ?? null);
35 35
 
36
-        $filteredConfiguration = array_filter($parsedConfiguration, function ($key) use ($matchingRoute) {
36
+        $filteredConfiguration = array_filter($parsedConfiguration, function($key) use ($matchingRoute) {
37 37
             return $key === $matchingRoute['_route'];
38 38
         }, ARRAY_FILTER_USE_KEY);
39 39
 
Please login to merge, or discard this patch.
src/Stitcher/Page/Adapter/CollectionAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     public function __construct(array $adapterConfiguration, VariableParser $variableParser)
20 20
     {
21
-        if (! $this->isValidConfiguration($adapterConfiguration)) {
21
+        if (!$this->isValidConfiguration($adapterConfiguration)) {
22 22
             throw InvalidCollectionAdapter::create();
23 23
         }
24 24
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
 
140 140
         $prev = prev($this->entries);
141 141
 
142
-        if (! $prev) {
142
+        if (!$prev) {
143 143
             reset($this->entries);
144 144
         } else {
145 145
             $browse['prev'] = $prev;
Please login to merge, or discard this patch.