Completed
Pull Request — master (#264)
by Kristof
04:49
created
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/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.
src/EventExport/Command/ExportEventsAsPDF.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
     }
169 169
 
170 170
     /**
171
-     * @return Brand
171
+     * @return string
172 172
      */
173 173
     public function getBrand()
174 174
     {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     }
177 177
 
178 178
     /**
179
-     * @return Title
179
+     * @return string
180 180
      */
181 181
     public function getTitle()
182 182
     {
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
     }
185 185
 
186 186
     /**
187
-     * @return Subtitle
187
+     * @return string
188 188
      */
189 189
     public function getSubtitle()
190 190
     {
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
     }
193 193
 
194 194
     /**
195
-     * @return Footer
195
+     * @return string
196 196
      */
197 197
     public function getFooter()
198 198
     {
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
     }
201 201
 
202 202
     /**
203
-     * @return Publisher
203
+     * @return string
204 204
      */
205 205
     public function getPublisher()
206 206
     {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @return null|\string[]
227
+     * @return string[]
228 228
      */
229 229
     public function getSelection()
230 230
     {
Please login to merge, or discard this patch.
src/EventExport/Format/HTML/Zipped/ZippedWebArchiveFileFormat.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/EventExport/Format/JSONLD/JSONLDFileWriter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
      */
15 15
     protected $eventFormatter;
16 16
 
17
+    /**
18
+     * @param string[] $include
19
+     */
17 20
     public function __construct($include = null)
18 21
     {
19 22
         $this->eventFormatter = new JSONLDEventFormatter($include);
Please login to merge, or discard this patch.
src/EventExport/Format/TabularData/CSV/CSVFileWriter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -15,6 +15,9 @@
 block discarded – undo
15 15
 
16 16
     protected $includedProperties;
17 17
 
18
+    /**
19
+     * @param string $filePath
20
+     */
18 21
     public function __construct($filePath)
19 22
     {
20 23
         $this->f = fopen($filePath, 'w');
Please login to merge, or discard this patch.
src/EventExport/Format/TabularData/OOXML/OOXMLFileWriter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     protected $i;
23 23
 
24 24
     /**
25
-     * @param $filePath
25
+     * @param string $filePath
26 26
      */
27 27
     public function __construct($filePath)
28 28
     {
Please login to merge, or discard this patch.
src/SavedSearches/CombinedSavedSearchRepository.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,6 @@
 block discarded – undo
13 13
     protected $repositories;
14 14
 
15 15
     /**
16
-     * @param SavedSearchRepositoryInterface $repository,...
17
-     *   Optionally an unlimited list of repositories to combine.
18 16
      *
19 17
      * @throws \InvalidArgumentException
20 18
      *   When one of the provided arguments does not implement
Please login to merge, or discard this patch.
src/SavedSearches/FixedSavedSearchRepository.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
     protected $user;
17 17
 
18 18
     /**
19
-     * @param String $userId
19
+     * @param String $user
20 20
      */
21 21
     public function __construct(\CultureFeed_User $user)
22 22
     {
Please login to merge, or discard this patch.