Completed
Push — 1.1 ( e28562...65f486 )
by Kamil
23:59
created
src/Sylius/Behat/Page/Page.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
     }
244 244
 
245 245
     /**
246
-     * @param string|array $selector
246
+     * @param string $selector
247 247
      * @param SelectorsHandler $selectorsHandler
248 248
      *
249 249
      * @return string
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Ui/Admin/ManagingProductsContext.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,13 +16,13 @@
 block discarded – undo
16 16
 use Sylius\Behat\NotificationType;
17 17
 use Sylius\Behat\Page\Admin\Crud\CreatePageInterface;
18 18
 use Sylius\Behat\Page\Admin\Crud\UpdatePageInterface;
19
+use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface;
19 20
 use Sylius\Behat\Page\Admin\Product\CreateConfigurableProductPageInterface;
20 21
 use Sylius\Behat\Page\Admin\Product\CreateSimpleProductPageInterface;
21 22
 use Sylius\Behat\Page\Admin\Product\IndexPageInterface;
22 23
 use Sylius\Behat\Page\Admin\Product\IndexPerTaxonPageInterface;
23 24
 use Sylius\Behat\Page\Admin\Product\UpdateConfigurableProductPageInterface;
24 25
 use Sylius\Behat\Page\Admin\Product\UpdateSimpleProductPageInterface;
25
-use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface;
26 26
 use Sylius\Behat\Service\NotificationCheckerInterface;
27 27
 use Sylius\Behat\Service\Resolver\CurrentPageResolverInterface;
28 28
 use Sylius\Behat\Service\SharedStorageInterface;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Order/UpdatePageInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -20,11 +20,13 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param AddressInterface $address
23
+     * @return void
23 24
      */
24 25
     public function specifyShippingAddress(AddressInterface $address);
25 26
 
26 27
     /**
27 28
      * @param AddressInterface $address
29
+     * @return void
28 30
      */
29 31
     public function specifyBillingAddress(AddressInterface $address);
30 32
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ShippingCategory/CreatePageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,16 +19,19 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param string $code
22
+     * @return void
22 23
      */
23 24
     public function specifyCode($code);
24 25
 
25 26
     /**
26 27
      * @param string $name
28
+     * @return void
27 29
      */
28 30
     public function nameIt($name);
29 31
 
30 32
     /**
31 33
      * @param string $description
34
+     * @return void
32 35
      */
33 36
     public function specifyDescription($description);
34 37
 }
Please login to merge, or discard this patch.