Completed
Push — _tmp_72eb6d1853605d3953720e1b0... ( 72eb6d )
by Kamil
353:05 queued 348:43
created
Model/ReviewerInterface.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -17,15 +17,33 @@
 block discarded – undo
17 17
 
18 18
 interface ReviewerInterface extends ResourceInterface
19 19
 {
20
+    /**
21
+     * @return string|null
22
+     */
20 23
     public function getEmail(): ?string;
21 24
 
25
+    /**
26
+     * @return void
27
+     */
22 28
     public function setEmail(?string $email): void;
23 29
 
30
+    /**
31
+     * @return string|null
32
+     */
24 33
     public function getFirstName(): ?string;
25 34
 
35
+    /**
36
+     * @return void
37
+     */
26 38
     public function setFirstName(?string $firstName): void;
27 39
 
40
+    /**
41
+     * @return string|null
42
+     */
28 43
     public function getLastName(): ?string;
29 44
 
45
+    /**
46
+     * @return void
47
+     */
30 48
     public function setLastName(?string $lastName): void;
31 49
 }
Please login to merge, or discard this patch.
Model/ReviewInterface.php 1 patch
Doc Comments   +38 added lines patch added patch discarded remove patch
@@ -22,27 +22,65 @@
 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
+     * @param ReviewableInterface $reviewSubject
82
+     *
83
+     * @return void
84
+     */
47 85
     public function setReviewSubject(?ReviewableInterface $reviewSubject): void;
48 86
 }
Please login to merge, or discard this patch.