Completed
Pull Request — master (#139)
by
unknown
05:01
created
src/Place/Place.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * Apply the place created event.
87
-     * @param PlaceCreate $placeCreated
87
+     * @param PlaceCreated $placeCreated
88 88
      */
89 89
     protected function applyPlaceCreated(PlaceCreated $placeCreated)
90 90
     {
@@ -114,6 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
     /**
116 116
      * Handle an update command to update organizer.
117
+     * @param string $organizerId
117 118
      */
118 119
     public function updateOrganizer($organizerId)
119 120
     {
@@ -225,7 +226,7 @@  discard block
 block discarded – undo
225 226
      * @param string $cdbXmlNamespaceUri
226 227
      *   The cdb xml namespace uri.
227 228
      *
228
-     * @return Actor
229
+     * @return Place
229 230
      *   The actor.
230 231
      */
231 232
     public static function importFromUDB2Actor(
Please login to merge, or discard this patch.
src/Offer/Events/Image/AbstractImageEvent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 
49 49
     /**
50 50
      * @param array $data
51
-     * @return mixed The object instance
51
+     * @return AbstractImageEvent The object instance
52 52
      */
53 53
     public static function deserialize(array $data)
54 54
     {
Please login to merge, or discard this patch.
src/LocalEventService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      * @param string $id
37 37
      *   A string uniquely identifying an event.
38 38
      *
39
-     * @return array
39
+     * @return string
40 40
      *   An event array.
41 41
      *
42 42
      * @throws EventNotFoundException if an event can not be found for the given id
Please login to merge, or discard this patch.
src/Event/Event.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,6 +80,7 @@  discard block
 block discarded – undo
80 80
      * @param Location $location
81 81
      * @param CalendarInterface $calendar
82 82
      * @param Theme/null $theme
83
+     * @param string $eventId
83 84
      *
84 85
      * @return Event
85 86
      */
@@ -368,9 +369,6 @@  discard block
 block discarded – undo
368 369
     /**
369 370
      * Updated the contact info.
370 371
      *
371
-     * @param array $phones
372
-     * @param array $emails
373
-     * @param array $urls
374 372
      */
375 373
     public function updateContactPoint(ContactPoint $contactPoint)
376 374
     {
Please login to merge, or discard this patch.