Completed
Pull Request — master (#314)
by Luc
04:56
created
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.