Completed
Push — master ( 0635f4...217dce )
by Kristof
8s
created
src/Variations/Command/EditDescriptionJSONDeserializer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     /**
47 47
      * @param stdClass $json
48 48
      *
49
-     * @return CreateEventVariation
49
+     * @return EditDescription
50 50
      */
51 51
     private function createTypedObject(stdClass $json)
52 52
     {
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     }
58 58
 
59 59
     /**
60
-     * @param mixed $json
60
+     * @param stdClass $json
61 61
      *
62 62
      * @throws ValidationException
63 63
      */
Please login to merge, or discard this patch.
src/Event/EventEditingServiceInterface.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      * @param Title $title
23 23
      * @param EventType $eventType
24 24
      * @param Address $address
25
-     * @param CalendarBase $calendar
25
+     * @param CalendarInterface $calendar
26 26
      * @param Theme|null $theme
27 27
      *
28 28
      * @return string $eventId
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      * @param Title $title
44 44
      * @param EventType $eventType
45 45
      * @param Address $address
46
-     * @param CalendarBase $calendar
46
+     * @param CalendarInterface $calendar
47 47
      * @param Theme/null $theme
48 48
      */
49 49
     public function updateMajorInfo($id, Title $title, EventType $eventType, Address $address, CalendarInterface $calendar, $theme = null);
Please login to merge, or discard this patch.
src/EventExport/Format/HTML/PDF/PDFWebArchiveFileFormat.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     /**
17 17
      * @param string $brand
18 18
      * @param string $title
19
-     * @param string|null $subtitle
19
+     * @param string|null $subTitle
20 20
      * @param string|null $footer
21 21
      * @param string|null $publisher
22 22
      * @param EventInfoServiceInterface|null $uitpas
Please login to merge, or discard this patch.
src/Event/Events/LabelsMerged.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     }
53 53
 
54 54
     /**
55
-     * @return mixed The object instance
55
+     * @return LabelsMerged The object instance
56 56
      */
57 57
     public static function deserialize(array $data)
58 58
     {
Please login to merge, or discard this patch.
src/Event/Events/TranslationApplied.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
      * TranslationApplied constructor.
44 44
      * @param String $eventId
45 45
      * @param Language $language
46
-     * @param String|null $title
47
-     * @param String|null $shortDescription
48
-     * @param String|null $longDescription
46
+     * @param null|string $title
47
+     * @param null|string $shortDescription
48
+     * @param null|string $longDescription
49 49
      */
50 50
     public function __construct(
51 51
         String $eventId,
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     }
69 69
 
70 70
     /**
71
-     * @return mixed The object instance
71
+     * @return TranslationApplied The object instance
72 72
      */
73 73
     public static function deserialize(array $data)
74 74
     {
Please login to merge, or discard this patch.
src/Event/Events/TranslationDeleted.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     }
39 39
 
40 40
     /**
41
-     * @return mixed The object instance
41
+     * @return TranslationDeleted The object instance
42 42
      */
43 43
     public static function deserialize(array $data)
44 44
     {
Please login to merge, or discard this patch.
src/Event/ReadModel/JSONLD/Specifications/Labelable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
 
10 10
     /**
11
-     * @param $eventLd
11
+     * @param \stdClass $eventLd
12 12
      * @return bool
13 13
      */
14 14
     public function hasLabel($eventLd, String $label)
Please login to merge, or discard this patch.
src/SavedSearches/ReadModel/SavedSearch.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * @param String $name
30 30
      * @param QueryString $query
31
-     * @param String $id
31
+     * @param string $id
32 32
      */
33 33
     public function __construct(String $name, QueryString $query, String $id = null)
34 34
     {
Please login to merge, or discard this patch.
src/Translation.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@
 block discarded – undo
36 36
     /**
37 37
      * Translation constructor.
38 38
      * @param Language $language
39
-     * @param String|null $title
40
-     * @param String|null $shortDescription
41
-     * @param String|null $longDescription
39
+     * @param null|string $title
40
+     * @param null|string $shortDescription
41
+     * @param null|string $longDescription
42 42
      */
43 43
     public function __construct(
44 44
         Language $language,
Please login to merge, or discard this patch.