Completed
Push — master ( 1c4fa3...04dec7 )
by Willem
24s queued 11s
created
tests/Integration/ProductFrontendControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,6 +166,6 @@
 block discarded – undo
166 166
      */
167 167
     protected function getProductId()
168 168
     {
169
-        return (int)$this->getProduct()->getId();
169
+        return (int) $this->getProduct()->getId();
170 170
     }
171 171
 }
Please login to merge, or discard this patch.
tests/Integration/PageFrontendControllerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,6 +156,6 @@
 block discarded – undo
156 156
      */
157 157
     private function getPageId(): int
158 158
     {
159
-        return (int)$this->getPage()->getId();
159
+        return (int) $this->getPage()->getId();
160 160
     }
161 161
 }
Please login to merge, or discard this patch.
src/Plugin/CategoryLayoutPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
             $result,
96 96
             array_filter(
97 97
                 array_map(
98
-                    function (string $handle): ?string {
98
+                    function(string $handle): ?string {
99 99
                         preg_match(
100 100
                             '/^catalog\_category\_view\_selectable\_0\_([a-z0-9]+)/i',
101 101
                             $handle,
Please login to merge, or discard this patch.
src/Plugin/ProductLayoutPlugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
             $result,
97 97
             array_filter(
98 98
                 array_map(
99
-                    function (string $handle): ?string {
99
+                    function(string $handle): ?string {
100 100
                         preg_match(
101 101
                             '/^catalog\_product\_view\_selectable\_0\_([a-z0-9]+)/i',
102 102
                             $handle,
Please login to merge, or discard this patch.