Completed
Pull Request — master (#322)
by Luc
05:08
created
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.
src/Event/EventEditingServiceInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
      * @param string $id
22 22
      * @param Language $language
23 23
      * @param Description $description
24
+     * @return string
24 25
      */
25 26
     public function updateDescription($id, Language $language, Description $description);
26 27
 
@@ -29,6 +30,7 @@  discard block
 block discarded – undo
29 30
      *
30 31
      * @param string $id
31 32
      * @param AgeRange $ageRange
33
+     * @return string
32 34
      */
33 35
     public function updateTypicalAgeRange($id, AgeRange $ageRange);
34 36
 
@@ -36,6 +38,7 @@  discard block
 block discarded – undo
36 38
      * Delete the typical age range of a place.
37 39
      *
38 40
      * @param string $id
41
+     * @return string
39 42
      */
40 43
     public function deleteTypicalAgeRange($id);
41 44
 
@@ -44,6 +47,7 @@  discard block
 block discarded – undo
44 47
      *
45 48
      * @param string $id
46 49
      * @param string $organizerId
50
+     * @return string
47 51
      */
48 52
     public function updateOrganizer($id, $organizerId);
49 53
 
@@ -52,6 +56,7 @@  discard block
 block discarded – undo
52 56
      *
53 57
      * @param string $id
54 58
      * @param string $organizerId
59
+     * @return string
55 60
      */
56 61
     public function deleteOrganizer($id, $organizerId);
57 62
 
@@ -60,6 +65,7 @@  discard block
 block discarded – undo
60 65
      *
61 66
      * @param string $id
62 67
      * @param ContactPoint $contactPoint
68
+     * @return string
63 69
      */
64 70
     public function updateContactPoint($id, ContactPoint $contactPoint);
65 71
 
@@ -68,6 +74,7 @@  discard block
 block discarded – undo
68 74
      *
69 75
      * @param string $id
70 76
      * @param Image $image
77
+     * @return string
71 78
      */
72 79
     public function addImage($id, Image $image);
73 80
 
@@ -94,6 +101,7 @@  discard block
 block discarded – undo
94 101
      *
95 102
      * @param string $id
96 103
      * @param Image $image
104
+     * @return string
97 105
      */
98 106
     public function removeImage($id, Image $image);
99 107
 
Please login to merge, or discard this patch.