Completed
Push — component-bundle ( 0f1f3e )
by Kamil
35:06
created
src/Sylius/Behat/Page/Admin/Taxon/UpdatePageInterface.php 1 patch
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -23,11 +23,13 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * @param string $description
25 25
      * @param string $languageCode
26
+     * @return void
26 27
      */
27 28
     public function describeItAs($description, $languageCode);
28 29
 
29 30
     /**
30 31
      * @param TaxonInterface $taxon
32
+     * @return void
31 33
      */
32 34
     public function chooseParent(TaxonInterface $taxon);
33 35
 
@@ -39,18 +41,21 @@  discard block
 block discarded – undo
39 41
     /**
40 42
      * @param string $name
41 43
      * @param string $languageCode
44
+     * @return void
42 45
      */
43 46
     public function nameIt($name, $languageCode);
44 47
 
45 48
     /**
46 49
      * @param string $slug
47 50
      * @param string $languageCode
51
+     * @return void
48 52
      */
49 53
     public function specifySlug($slug, $languageCode);
50 54
 
51 55
     /**
52 56
      * @param string $path
53 57
      * @param string $type
58
+     * @return void
54 59
      */
55 60
     public function attachImage($path, $type = null);
56 61
 
@@ -70,13 +75,18 @@  discard block
 block discarded – undo
70 75
 
71 76
     /**
72 77
      * @param string $type
78
+     * @return void
73 79
      */
74 80
     public function removeImageWithType($type);
75 81
 
82
+    /**
83
+     * @return void
84
+     */
76 85
     public function removeFirstImage();
77 86
 
78 87
     /**
79 88
      * @param string $languageCode
89
+     * @return void
80 90
      */
81 91
     public function enableSlugModification($languageCode = 'en_US');
82 92
 
@@ -88,11 +98,13 @@  discard block
 block discarded – undo
88 98
     /**
89 99
      * @param string $type
90 100
      * @param string $path
101
+     * @return void
91 102
      */
92 103
     public function changeImageWithType($type, $path);
93 104
 
94 105
     /**
95 106
      * @param string $type
107
+     * @return void
96 108
      */
97 109
     public function modifyFirstImageType($type);
98 110
 
@@ -126,6 +138,7 @@  discard block
 block discarded – undo
126 138
 
127 139
     /**
128 140
      * @param string $locale
141
+     * @return void
129 142
      */
130 143
     public function activateLanguageTab($locale);
131 144
 }
Please login to merge, or discard this patch.
Form/DataTransformer/ProductsToProductAssociationsTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -158,7 +158,7 @@
 block discarded – undo
158 158
 
159 159
     /**
160 160
      * @param ProductAssociationInterface $productAssociation
161
-     * @param string $productIds
161
+     * @param string $productCodes
162 162
      */
163 163
     private function setAssociatedProductsByProductCodes(ProductAssociationInterface $productAssociation, $productCodes)
164 164
     {
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ImageInterface.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * @param string $type
29
+     * @return void
29 30
      */
30 31
     public function setType($type);
31 32
 
@@ -36,6 +37,7 @@  discard block
 block discarded – undo
36 37
 
37 38
     /**
38 39
      * @param \SplFileInfo $file
40
+     * @return void
39 41
      */
40 42
     public function setFile(\SplFileInfo $file);
41 43
 
@@ -51,6 +53,7 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param string $path
56
+     * @return void
54 57
      */
55 58
     public function setPath($path);
56 59
 
@@ -61,6 +64,7 @@  discard block
 block discarded – undo
61 64
 
62 65
     /**
63 66
      * @param ImageAwareInterface|null $owner
67
+     * @return void
64 68
      */
65 69
     public function setOwner(ImageAwareInterface $owner = null);
66 70
 }
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Sylius\Component\Core\Model;
13 13
 
14
-use Sylius\Component\Resource\Model\CodeAwareInterface;
15 14
 use Sylius\Component\Resource\Model\ResourceInterface;
16 15
 
17 16
 /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/TaxonomyContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
 
137 137
         /** @var ImageInterface $taxonImage */
138 138
         $taxonImage = $this->taxonImageFactory->createNew();
139
-        $taxonImage->setFile(new UploadedFile($filesPath.$imagePath, basename($imagePath)));
139
+        $taxonImage->setFile(new UploadedFile($filesPath . $imagePath, basename($imagePath)));
140 140
         $taxonImage->setType($imageType);
141 141
         $this->imageUploader->upload($taxonImage);
142 142
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Taxon/CreatePage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
 
114 114
         $imageForm = $this->getLastImageElement();
115 115
         $imageForm->fillField('Type', $type);
116
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
116
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
117 117
     }
118 118
 
119 119
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Taxon/UpdatePage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             $imageForm->fillField('Type', $type);
76 76
         }
77 77
 
78
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
78
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
79 79
     }
80 80
 
81 81
     /**
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         $filesPath = $this->getParameter('files_path');
147 147
 
148 148
         $imageForm = $this->getImageElementByType($type);
149
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
149
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
150 150
     }
151 151
 
152 152
     /**
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
     private function getImageElementByType($type)
305 305
     {
306 306
         $images = $this->getElement('images');
307
-        $typeInput = $images->find('css', 'input[value="'.$type.'"]');
307
+        $typeInput = $images->find('css', 'input[value="' . $type . '"]');
308 308
 
309 309
         if (null === $typeInput) {
310 310
             return null;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/CreateSimpleProductPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
             $imageForm->fillField('Type', $type);
108 108
         }
109 109
 
110
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
110
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
111 111
     }
112 112
 
113 113
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/UpdateConfigurableProductPage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
             $imageForm->fillField('Type', $type);
76 76
         }
77 77
 
78
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
78
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
79 79
     }
80 80
 
81 81
     /**
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         $filesPath = $this->getParameter('files_path');
147 147
 
148 148
         $imageForm = $this->getImageElementByType($type);
149
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
149
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
150 150
     }
151 151
 
152 152
     /**
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
     private function getImageElementByType($type)
305 305
     {
306 306
         $images = $this->getElement('images');
307
-        $typeInput = $images->find('css', 'input[value="'.$type.'"]');
307
+        $typeInput = $images->find('css', 'input[value="' . $type . '"]');
308 308
 
309 309
         if (null === $typeInput) {
310 310
             return null;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/CreateConfigurableProductPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
             $imageForm->fillField('Type', $type);
108 108
         }
109 109
 
110
-        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path);
110
+        $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path);
111 111
     }
112 112
 
113 113
     /**
Please login to merge, or discard this patch.