Completed
Pull Request — master (#161)
by Kristof
05:38
created
src/Event/Event.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -81,6 +81,7 @@
 block discarded – undo
81 81
      * @param CalendarInterface $calendar
82 82
      * @param Theme|null $theme
83 83
      * @param \DateTimeImmutable|null $publicationDate
84
+     * @param string $eventId
84 85
      *
85 86
      * @return Event
86 87
      */
Please login to merge, or discard this patch.
src/Event/EventEditingServiceInterface.php 1 patch
Doc Comments   +10 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
      *
24 24
      * @param string $id
25 25
      * @param string $description
26
+     * @return string
26 27
      */
27 28
     public function updateDescription($id, $description);
28 29
 
@@ -31,6 +32,7 @@  discard block
 block discarded – undo
31 32
      *
32 33
      * @param string $id
33 34
      * @param string $ageRange
35
+     * @return string
34 36
      */
35 37
     public function updateTypicalAgeRange($id, $ageRange);
36 38
 
@@ -38,6 +40,7 @@  discard block
 block discarded – undo
38 40
      * Delete the typical age range of a place.
39 41
      *
40 42
      * @param string $id
43
+     * @return string
41 44
      */
42 45
     public function deleteTypicalAgeRange($id);
43 46
 
@@ -46,6 +49,7 @@  discard block
 block discarded – undo
46 49
      *
47 50
      * @param string $id
48 51
      * @param string $organizerId
52
+     * @return string
49 53
      */
50 54
     public function updateOrganizer($id, $organizerId);
51 55
 
@@ -54,6 +58,7 @@  discard block
 block discarded – undo
54 58
      *
55 59
      * @param string $id
56 60
      * @param string $organizerId
61
+     * @return string
57 62
      */
58 63
     public function deleteOrganizer($id, $organizerId);
59 64
 
@@ -62,6 +67,7 @@  discard block
 block discarded – undo
62 67
      *
63 68
      * @param string $id
64 69
      * @param ContactPoint $contactPoint
70
+     * @return string
65 71
      */
66 72
     public function updateContactPoint($id, ContactPoint $contactPoint);
67 73
 
@@ -70,6 +76,7 @@  discard block
 block discarded – undo
70 76
      *
71 77
      * @param string $id
72 78
      * @param Image $image
79
+     * @return string
73 80
      */
74 81
     public function addImage($id, Image $image);
75 82
 
@@ -96,6 +103,7 @@  discard block
 block discarded – undo
96 103
      *
97 104
      * @param string $id
98 105
      * @param Image $image
106
+     * @return string
99 107
      */
100 108
     public function removeImage($id, Image $image);
101 109
 
@@ -103,7 +111,7 @@  discard block
 block discarded – undo
103 111
      * @param Title $title
104 112
      * @param EventType $eventType
105 113
      * @param Location $location
106
-     * @param CalendarBase $calendar
114
+     * @param CalendarInterface $calendar
107 115
      * @param Theme/null $theme
108 116
      *
109 117
      * @return string $eventId
@@ -115,7 +123,7 @@  discard block
 block discarded – undo
115 123
      * @param Title $title
116 124
      * @param EventType $eventType
117 125
      * @param Location $location
118
-     * @param CalendarBase $calendar
126
+     * @param CalendarInterface $calendar
119 127
      * @param Theme/null $theme
120 128
      *
121 129
      * @return string $eventId
Please login to merge, or discard this patch.
src/Place/Commands/UpdateMajorInfo.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,10 +42,10 @@
 block discarded – undo
42 42
     private $calendar;
43 43
 
44 44
     /**
45
-     * @param string $eventId
46 45
      * @param Title $title
47
-     * @param string $location
48 46
      * @param CalendarInterface $calendar
47
+     * @param string $placeId
48
+     * @param Theme $theme
49 49
      */
50 50
     public function __construct($placeId, Title $title, EventType $eventType, Address $address, CalendarInterface $calendar, $theme = null)
51 51
     {
Please login to merge, or discard this patch.