Completed
Push — pull-request/8500 ( e49efc...54b484 )
by Kamil
36:05 queued 17:36
created
src/Sylius/Behat/Page/Admin/CustomerGroup/CreatePage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin\CustomerGroup;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductAttribute/CreatePage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin\ProductAttribute;
15 15
 
Please login to merge, or discard this patch.
Sylius/Behat/Page/Admin/Product/UpdateConfigurableProductPageInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin\Product;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateSimpleProductPage.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin\Product;
15 15
 
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
             $imageForm->fillField('Type', $type);
214 214
         }
215 215
 
216
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
216
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
217 217
     }
218 218
 
219 219
     /**
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
         $filesPath = $this->getParameter('files_path');
225 225
 
226 226
         $imageForm = $this->getImageElementByType($type);
227
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
227
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
228 228
     }
229 229
 
230 230
     /**
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
     private function getImageElementByType($type)
501 501
     {
502 502
         $images = $this->getElement('images');
503
-        $typeInput = $images->find('css', 'input[value="'.$type.'"]');
503
+        $typeInput = $images->find('css', 'input[value="' . $type . '"]');
504 504
 
505 505
         if (null === $typeInput) {
506 506
             return null;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin\Product;
15 15
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
             $imageForm->fillField('Type', $type);
144 144
         }
145 145
 
146
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
146
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
147 147
     }
148 148
 
149 149
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/PromotionCoupon/CreatePage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin\PromotionCoupon;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Crud/IndexPageInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin\Crud;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/IndexPageInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin\Customer;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/DashboardPageInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace Sylius\Behat\Page\Admin;
15 15
 
Please login to merge, or discard this patch.