Completed
Push — 1.3-make-js-behat-faster ( 85e122 )
by Kamil
09:41
created
src/Sylius/Component/Order/Remover/ExpiredCartsRemoverInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,5 +15,8 @@
 block discarded – undo
15 15
 
16 16
 interface ExpiredCartsRemoverInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function remove(): void;
19 22
 }
Please login to merge, or discard this patch.
src/Sylius/Component/User/Security/PasswordUpdaterInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
 
18 18
 interface PasswordUpdaterInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function updatePassword(CredentialsHolderInterface $user): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/ShippingContext.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -146,6 +146,7 @@
 block discarded – undo
146 146
 
147 147
     /**
148 148
      * @Given the store (also )allows shipping with :name
149
+     * @param string $name
149 150
      */
150 151
     public function theStoreAllowsShippingMethodWithName($name)
151 152
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/TaxationContext.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,6 +127,7 @@  discard block
 block discarded – undo
127 127
      * @Given the store has a tax category :name with a code :code
128 128
      * @Given the store has a tax category :name
129 129
      * @Given the store has a tax category :name also
130
+     * @param string $name
130 131
      */
131 132
     public function theStoreHasTaxCategoryWithCode($name, $code = null)
132 133
     {
@@ -213,7 +214,7 @@  discard block
 block discarded – undo
213 214
     /**
214 215
      * @param string $taxRateAmount
215 216
      *
216
-     * @return string
217
+     * @return integer
217 218
      */
218 219
     private function getAmountFromString($taxRateAmount)
219 220
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Tests/Functional/AssetTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -104,6 +104,9 @@
 block discarded – undo
104 104
         return $webDirectory;
105 105
     }
106 106
 
107
+    /**
108
+     * @param string $webDirectory
109
+     */
107 110
     private function assertFileContent($lines, $webDirectory): void
108 111
     {
109 112
         foreach ($lines as $line) {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -299,7 +299,7 @@
 block discarded – undo
299 299
 
300 300
     /**
301 301
      * @param string $attributeName
302
-     * @param string|array $selector
302
+     * @param string $selector
303 303
      *
304 304
      * @return bool
305 305
      *
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/Controller/Parameters.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * {@inheritdoc}
22
+     * @param string $path
22 23
      */
23 24
     public function get($path, $default = null)
24 25
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Filesystem/FilesystemInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
     /**
48 48
      * Checks the existence of files or directories.
49 49
      *
50
-     * @param string|array|\Traversable $files A filename, an array of files, or a \Traversable instance to check
50
+     * @param string $files A filename, an array of files, or a \Traversable instance to check
51 51
      *
52 52
      * @return bool true if the file exists, false otherwise
53 53
      */
Please login to merge, or discard this patch.
src/Sylius/Component/Registry/PrioritizedServiceRegistryInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @throws ExistingServiceException
28 28
      * @throws \InvalidArgumentException
29
+     * @return void
29 30
      */
30 31
     public function register($service, int $priority = 0): void;
31 32
 
@@ -33,6 +34,7 @@  discard block
 block discarded – undo
33 34
      * @param object $service
34 35
      *
35 36
      * @throws NonExistingServiceException
37
+     * @return void
36 38
      */
37 39
     public function unregister($service): void;
38 40
 
Please login to merge, or discard this patch.