Completed
Push — master ( 4f34c8...2960e8 )
by Kamil
23:03 queued 15:59
created
src/Sylius/Behat/Context/Setup/OrderContext.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -126,6 +126,7 @@
 block discarded – undo
126 126
      * @Given a customer :customer placed an order :orderNumber
127 127
      * @Given the customer :customer has already placed an order :orderNumber
128 128
      * @Given there is a customer :customer that placed an order :orderNumber in channel :channel
129
+     * @param string $orderNumber
129 130
      */
130 131
     public function thereIsCustomerThatPlacedOrder(CustomerInterface $customer, $orderNumber = null, $channel = null)
131 132
     {
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Payment/IndexPageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -17,13 +17,22 @@
 block discarded – undo
17 17
 
18 18
 interface IndexPageInterface extends BaseIndexPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function chooseStateToFilter(string $paymentState): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function completePaymentOfOrderWithNumber(string $orderNumber): void;
23 29
 
24 30
     public function getPaymentStateByOrderNumber(string $orderNumber): string;
25 31
 
26 32
     public function isPaymentWithOrderNumberInPosition(string $orderNumber, int $position): bool;
27 33
 
34
+    /**
35
+     * @return void
36
+     */
28 37
     public function showOrderPageForNthPayment(int $position): void;
29 38
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Shipment/IndexPageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -17,13 +17,22 @@
 block discarded – undo
17 17
 
18 18
 interface IndexPageInterface extends BaseIndexPageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function chooseStateToFilter(string $shipmentState): void;
21 24
 
22 25
     public function isShipmentWithOrderNumberInPosition(string $orderNumber, int $position): bool;
23 26
 
27
+    /**
28
+     * @return void
29
+     */
24 30
     public function shipShipmentOfOrderWithNumber(string $orderNumber): void;
25 31
 
26 32
     public function getShipmentStatusByOrderNumber(string $orderNumber): string;
27 33
 
34
+    /**
35
+     * @return void
36
+     */
28 37
     public function showOrderPageForNthShipment(int $position): void;
29 38
 }
Please login to merge, or discard this patch.