Completed
Pull Request — master (#315)
by Luc
14:30
created
src/Role/Role.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     private $userIds = [];
53 53
 
54 54
     /**
55
-     * @return string
55
+     * @return UUID
56 56
      */
57 57
     public function getAggregateRootId()
58 58
     {
Please login to merge, or discard this patch.
src/Event/EventEditingServiceInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -18,6 +18,7 @@  discard block
 block discarded – undo
18 18
      *
19 19
      * @param string $id
20 20
      * @param string $description
21
+     * @return string
21 22
      */
22 23
     public function updateDescription($id, $description);
23 24
 
@@ -26,6 +27,7 @@  discard block
 block discarded – undo
26 27
      *
27 28
      * @param string $id
28 29
      * @param AgeRange $ageRange
30
+     * @return string
29 31
      */
30 32
     public function updateTypicalAgeRange($id, AgeRange $ageRange);
31 33
 
@@ -33,6 +35,7 @@  discard block
 block discarded – undo
33 35
      * Delete the typical age range of a place.
34 36
      *
35 37
      * @param string $id
38
+     * @return string
36 39
      */
37 40
     public function deleteTypicalAgeRange($id);
38 41
 
@@ -41,6 +44,7 @@  discard block
 block discarded – undo
41 44
      *
42 45
      * @param string $id
43 46
      * @param string $organizerId
47
+     * @return string
44 48
      */
45 49
     public function updateOrganizer($id, $organizerId);
46 50
 
@@ -49,6 +53,7 @@  discard block
 block discarded – undo
49 53
      *
50 54
      * @param string $id
51 55
      * @param string $organizerId
56
+     * @return string
52 57
      */
53 58
     public function deleteOrganizer($id, $organizerId);
54 59
 
@@ -57,6 +62,7 @@  discard block
 block discarded – undo
57 62
      *
58 63
      * @param string $id
59 64
      * @param ContactPoint $contactPoint
65
+     * @return string
60 66
      */
61 67
     public function updateContactPoint($id, ContactPoint $contactPoint);
62 68
 
@@ -65,6 +71,7 @@  discard block
 block discarded – undo
65 71
      *
66 72
      * @param string $id
67 73
      * @param Image $image
74
+     * @return string
68 75
      */
69 76
     public function addImage($id, Image $image);
70 77
 
@@ -91,6 +98,7 @@  discard block
 block discarded – undo
91 98
      *
92 99
      * @param string $id
93 100
      * @param Image $image
101
+     * @return string
94 102
      */
95 103
     public function removeImage($id, Image $image);
96 104
 
Please login to merge, or discard this patch.
src/Calendar/DayOfWeekCollection.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -14,6 +14,7 @@
 block discarded – undo
14 14
     /**
15 15
      * DayOfWeekCollection constructor.
16 16
      * @param DayOfWeek[] ...$daysOfWeek
17
+     * @param DayOfWeek $daysOfWeek
17 18
      */
18 19
     public function __construct(DayOfWeek ...$daysOfWeek)
19 20
     {
Please login to merge, or discard this patch.
src/Offer/Events/AbstractDescriptionTranslated.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return StringLiteral
27
+     * @return string
28 28
      */
29 29
     public function getDescription()
30 30
     {
Please login to merge, or discard this patch.
src/Media/Events/MediaObjectCreated.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
     }
84 84
 
85 85
     /**
86
-     * @return StringLiteral
86
+     * @return string
87 87
      */
88 88
     public function getDescription()
89 89
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-     * @return StringLiteral
94
+     * @return string
95 95
      */
96 96
     public function getCopyrightHolder()
97 97
     {
Please login to merge, or discard this patch.