Completed
Push — docs-unified-api-section ( 191e4f...d674e9 )
by Kamil
10:53 queued 04:48
created
src/Sylius/Behat/Page/Shop/ProductReview/CreatePageInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -17,14 +17,29 @@
 block discarded – undo
17 17
 
18 18
 interface CreatePageInterface extends PageInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function titleReview(?string $title): void;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function setComment(?string $comment): void;
23 29
 
30
+    /**
31
+     * @return void
32
+     */
24 33
     public function setAuthor(string $author): void;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function rateReview(int $rate): void;
27 39
 
40
+    /**
41
+     * @return void
42
+     */
28 43
     public function submitReview(): void;
29 44
 
30 45
     public function getRateValidationMessage(): string;
Please login to merge, or discard this patch.
src/Sylius/Bundle/ShippingBundle/Assigner/ShippingDateAssignerInterface.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 ShippingDateAssignerInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function assign(ShipmentInterface $shipment): void;
21 24
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Channel/Repository/ChannelRepositoryInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -20,6 +20,9 @@
 block discarded – undo
20 20
 {
21 21
     public function findOneByHostname(string $hostname): ?ChannelInterface;
22 22
 
23
+    /**
24
+     * @return \Sylius\Component\Core\Model\ChannelInterface
25
+     */
23 26
     public function findOneByCode(string $code): ?ChannelInterface;
24 27
 
25 28
     /**
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ShopBillingDataInterface.php 1 patch
Doc Comments   +36 added lines patch added patch discarded remove patch
@@ -17,27 +17,63 @@
 block discarded – undo
17 17
 
18 18
 interface ShopBillingDataInterface extends ResourceInterface
19 19
 {
20
+    /**
21
+     * @return string|null
22
+     */
20 23
     public function getTaxId(): ?string;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function setTaxId(?string $taxId): void;
23 29
 
30
+    /**
31
+     * @return string|null
32
+     */
24 33
     public function getCompany(): ?string;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function setCompany(?string $company): void;
27 39
 
40
+    /**
41
+     * @return string|null
42
+     */
28 43
     public function getCountryCode(): ?string;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function setCountryCode(?string $countryCode): void;
31 49
 
50
+    /**
51
+     * @return string|null
52
+     */
32 53
     public function getStreet(): ?string;
33 54
 
55
+    /**
56
+     * @return void
57
+     */
34 58
     public function setStreet(?string $street): void;
35 59
 
60
+    /**
61
+     * @return string|null
62
+     */
36 63
     public function getCity(): ?string;
37 64
 
65
+    /**
66
+     * @return void
67
+     */
38 68
     public function setCity(?string $city): void;
39 69
 
70
+    /**
71
+     * @return string|null
72
+     */
40 73
     public function getPostcode(): ?string;
41 74
 
75
+    /**
76
+     * @return void
77
+     */
42 78
     public function setPostcode(?string $postcode): void;
43 79
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShipmentInterface.php 1 patch
Doc Comments   +32 added lines patch added patch discarded remove patch
@@ -27,12 +27,24 @@  discard block
 block discarded – undo
27 27
 
28 28
     public const STATE_CANCELLED = 'cancelled';
29 29
 
30
+    /**
31
+     * @return string
32
+     */
30 33
     public function getState(): ?string;
31 34
 
35
+    /**
36
+     * @return void
37
+     */
32 38
     public function setState(?string $state): void;
33 39
 
40
+    /**
41
+     * @return ShippingMethodInterface|null
42
+     */
34 43
     public function getMethod(): ?ShippingMethodInterface;
35 44
 
45
+    /**
46
+     * @return void
47
+     */
36 48
     public function setMethod(?ShippingMethodInterface $method): void;
37 49
 
38 50
     /**
@@ -42,19 +54,39 @@  discard block
 block discarded – undo
42 54
      */
43 55
     public function getUnits(): Collection;
44 56
 
57
+    /**
58
+     * @return void
59
+     */
45 60
     public function addUnit(ShipmentUnitInterface $unit): void;
46 61
 
62
+    /**
63
+     * @return void
64
+     */
47 65
     public function removeUnit(ShipmentUnitInterface $unit): void;
48 66
 
49 67
     public function hasUnit(ShipmentUnitInterface $unit): bool;
50 68
 
69
+    /**
70
+     * @return string|null
71
+     */
51 72
     public function getTracking(): ?string;
52 73
 
74
+    /**
75
+     * @return void
76
+     */
53 77
     public function setTracking(?string $tracking): void;
54 78
 
55 79
     public function isTracked(): bool;
56 80
 
81
+    /**
82
+     * @return \DateTimeInterface|null
83
+     */
57 84
     public function getShippedAt(): ?\DateTimeInterface;
58 85
 
86
+    /**
87
+     * @param \DateTimeInterface $shippedAt
88
+     *
89
+     * @return void
90
+     */
59 91
     public function setShippedAt(?\DateTimeInterface $shippedAt): void;
60 92
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/AdminBundle/Controller/DashboardController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -83,6 +83,9 @@
 block discarded – undo
83 83
         return $this->templatingEngine->renderResponse('@SyliusAdmin/Dashboard/index.html.twig', $data);
84 84
     }
85 85
 
86
+    /**
87
+     * @return ChannelInterface
88
+     */
86 89
     private function findChannelByCodeOrFindFirst(?string $channelCode): ?ChannelInterface
87 90
     {
88 91
         $channel = null;
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/DashboardPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,5 +25,8 @@
 block discarded – undo
25 25
 
26 26
     public function hasResendVerificationEmailButton(): bool;
27 27
 
28
+    /**
29
+     * @return void
30
+     */
28 31
     public function pressResendVerificationEmail(): void;
29 32
 }
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
@@ -253,7 +253,7 @@
 block discarded – undo
253 253
     }
254 254
 
255 255
     /**
256
-     * @param string|array $selector
256
+     * @param string $selector
257 257
      *
258 258
      * @throws ElementNotFoundException
259 259
      */
Please login to merge, or discard this patch.
src/Sylius/Behat/Client/ApiSecurityClientInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -15,12 +15,24 @@
 block discarded – undo
15 15
 
16 16
 interface ApiSecurityClientInterface
17 17
 {
18
+    /**
19
+     * @return void
20
+     */
18 21
     public function prepareLoginRequest(): void;
19 22
 
23
+    /**
24
+     * @return void
25
+     */
20 26
     public function setEmail(string $email): void;
21 27
 
28
+    /**
29
+     * @return void
30
+     */
22 31
     public function setPassword(string $password): void;
23 32
 
33
+    /**
34
+     * @return void
35
+     */
24 36
     public function call(): void;
25 37
 
26 38
     public function isLoggedIn(): bool;
Please login to merge, or discard this patch.