Completed
Push — 1.4 ( 4d2cb6...71b698 )
by Kamil
09:52 queued 04:24
created
src/Sylius/Component/Product/Model/ProductOptionValueInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -20,16 +20,28 @@
 block discarded – undo
20 20
 
21 21
 interface ProductOptionValueInterface extends ResourceInterface, CodeAwareInterface, TranslatableInterface
22 22
 {
23
+    /**
24
+     * @return ProductOptionInterface
25
+     */
23 26
     public function getOption(): ?ProductOptionInterface;
24 27
 
28
+    /**
29
+     * @return void
30
+     */
25 31
     public function setOption(?ProductOptionInterface $option): void;
26 32
 
27 33
     public function getValue(): ?string;
28 34
 
35
+    /**
36
+     * @return void
37
+     */
29 38
     public function setValue(?string $value): void;
30 39
 
31 40
     public function getOptionCode(): ?string;
32 41
 
42
+    /**
43
+     * @return string
44
+     */
33 45
     public function getName(): ?string;
34 46
 
35 47
     /**
Please login to merge, or discard this patch.
src/Sylius/Component/Review/Model/ReviewInterface.php 1 patch
Doc Comments   +36 added lines patch added patch discarded remove patch
@@ -22,27 +22,63 @@
 block discarded – undo
22 22
     public const STATUS_ACCEPTED = 'accepted';
23 23
     public const STATUS_REJECTED = 'rejected';
24 24
 
25
+    /**
26
+     * @return string
27
+     */
25 28
     public function getTitle(): ?string;
26 29
 
30
+    /**
31
+     * @return void
32
+     */
27 33
     public function setTitle(?string $title): void;
28 34
 
35
+    /**
36
+     * @return integer
37
+     */
29 38
     public function getRating(): ?int;
30 39
 
40
+    /**
41
+     * @return void
42
+     */
31 43
     public function setRating(?int $rating): void;
32 44
 
45
+    /**
46
+     * @return string
47
+     */
33 48
     public function getComment(): ?string;
34 49
 
50
+    /**
51
+     * @return void
52
+     */
35 53
     public function setComment(?string $comment): void;
36 54
 
55
+    /**
56
+     * @return ReviewerInterface
57
+     */
37 58
     public function getAuthor(): ?ReviewerInterface;
38 59
 
60
+    /**
61
+     * @return void
62
+     */
39 63
     public function setAuthor(?ReviewerInterface $author): void;
40 64
 
65
+    /**
66
+     * @return string
67
+     */
41 68
     public function getStatus(): ?string;
42 69
 
70
+    /**
71
+     * @return void
72
+     */
43 73
     public function setStatus(?string $status): void;
44 74
 
75
+    /**
76
+     * @return ReviewableInterface
77
+     */
45 78
     public function getReviewSubject(): ?ReviewableInterface;
46 79
 
80
+    /**
81
+     * @return void
82
+     */
47 83
     public function setReviewSubject(?ReviewableInterface $reviewSubject): void;
48 84
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Shipping/Model/ShipmentUnitInterface.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 getShipment(): ?ShipmentInterface;
22 22
 
23
+    /**
24
+     * @return void
25
+     */
23 26
     public function setShipment(?ShipmentInterface $shipment): void;
24 27
 
25 28
     public function getShippable(): ?ShippableInterface;
Please login to merge, or discard this patch.