Completed
Push — master ( 168d8e...3735b4 )
by Kristof
10:48 queued 05:04
created
src/DeleteImageTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @return ing
43
+     * @return integer
44 44
      */
45 45
     function getIndexToDelete()
46 46
     {
Please login to merge, or discard this patch.
src/Event/EventLDProjector.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -799,6 +799,9 @@
 block discarded – undo
799 799
         return $document;
800 800
     }
801 801
 
802
+    /**
803
+     * @param string $eventId
804
+     */
802 805
     private function generateSameAs($eventId, $name)
803 806
     {
804 807
         $eventSlug = $this->slugger->slug($name);
Please login to merge, or discard this patch.
src/Event/Events/BookingInfoUpdated.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     /**
20 20
      * @param string $id
21
-     * @param Object $bookingInfo
21
+     * @param \CultuurNet\UDB3\BookingInfo $bookingInfo
22 22
      */
23 23
     public function __construct($id, $bookingInfo)
24 24
     {
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     }
28 28
 
29 29
     /**
30
-     * @return mixed The object instance
30
+     * @return BookingInfoUpdated The object instance
31 31
      */
32 32
     public static function deserialize(array $data)
33 33
     {
Please login to merge, or discard this patch.
src/Event/Events/EventCreatedFromCdbXml.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @return mixed The object instance
45
+     * @return EventCreatedFromCdbXml The object instance
46 46
      */
47 47
     public static function deserialize(array $data)
48 48
     {
Please login to merge, or discard this patch.
src/Event/Events/EventUpdatedFromCdbXml.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     }
43 43
 
44 44
     /**
45
-     * @return mixed The object instance
45
+     * @return EventUpdatedFromCdbXml The object instance
46 46
      */
47 47
     public static function deserialize(array $data)
48 48
     {
Please login to merge, or discard this patch.
src/Event/ReadModel/History/HistoryProjector.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     }
126 126
 
127 127
     /**
128
-     * @param $dateString
128
+     * @param string $dateString
129 129
      * @return \DateTime
130 130
      */
131 131
     private function dateFromUdb2DateString($dateString)
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
 
352 352
     /**
353 353
      * @param string $eventId
354
-     * @param Log[]|Log $logs
354
+     * @param Log $logs
355 355
      */
356 356
     protected function writeHistory($eventId, $logs)
357 357
     {
Please login to merge, or discard this patch.
src/Event/ReadModel/JSONLD/OrganizerServiceInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Gets the JSON-LD structure of an Organizer.
17 17
      *
18
-     * @param string $organizerId
18
+     * @param string $oganizerId
19 19
      *   Id of the Organizer.
20 20
      *
21 21
      * @return \stdClass
Please login to merge, or discard this patch.
src/Event/ReadModel/Permission/Doctrine/DBALRepository.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 use CultuurNet\UDB3\Event\ReadModel\Permission\PermissionQueryInterface;
12 12
 use Doctrine\DBAL\Connection;
13 13
 use Doctrine\DBAL\Exception\UniqueConstraintViolationException;
14
-use Doctrine\DBAL\Schema\Schema;
15 14
 use CultuurNet\UDB3\Event\ReadModel\Permission\PermissionRepositoryInterface;
16 15
 use ValueObjects\String\String;
17 16
 
Please login to merge, or discard this patch.
src/EventExport/Command/ExportEvents.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     }
70 70
 
71 71
     /**
72
-     * @return null|\string[]
72
+     * @return string[]
73 73
      */
74 74
     public function getSelection()
75 75
     {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     }
78 78
 
79 79
     /**
80
-     * @return null|\string[]
80
+     * @return string[]
81 81
      */
82 82
     public function getInclude()
83 83
     {
Please login to merge, or discard this patch.