Completed
Push — master ( 70dfe1...a97a1c )
by Torben
04:18
created
Classes/Controller/EventController.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
      * Detail view for an event
326 326
      *
327 327
      * @param \DERHANSEN\SfEventMgt\Domain\Model\Event $event Event
328
-     * @return mixed string|void
328
+     * @return string|null string|void
329 329
      */
330 330
     public function detailAction(Event $event = null)
331 331
     {
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
      *
388 388
      * @param Event $event The event
389 389
      *
390
-     * @return string|false
390
+     * @return string|null
391 391
      */
392 392
     public function icalDownloadAction(Event $event = null)
393 393
     {
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
      *
407 407
      * @param \DERHANSEN\SfEventMgt\Domain\Model\Event $event Event
408 408
      *
409
-     * @return mixed string|void
409
+     * @return string|null string|void
410 410
      */
411 411
     public function registrationAction(Event $event = null)
412 412
     {
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
      * @Extbase\Validate("DERHANSEN\SfEventMgt\Validation\Validator\RegistrationFieldValidator", param="registration")
565 565
      * @Extbase\Validate("DERHANSEN\SfEventMgt\Validation\Validator\RegistrationValidator", param="registration")
566 566
      *
567
-     * @return mixed string|void
567
+     * @return string|null string|void
568 568
      */
569 569
     public function saveRegistrationAction(Registration $registration, Event $event)
570 570
     {
Please login to merge, or discard this patch.
Classes/Controller/AdministrationController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@
 block discarded – undo
254 254
     /**
255 255
      * Returns the create new record URL for the given table
256 256
      *
257
-     * @param $table
257
+     * @param string $table
258 258
      * @throws \TYPO3\CMS\Backend\Routing\Exception\RouteNotFoundException
259 259
      * @return string
260 260
      */
Please login to merge, or discard this patch.
Classes/Domain/Repository/AbstractForeignRecordRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      *
36 36
      * @param \DERHANSEN\SfEventMgt\Domain\Model\Dto\ForeignRecordDemand $demand ForeignRecordDemand
37 37
      *
38
-     * @return array|\TYPO3\CMS\Extbase\Persistence\QueryResultInterface
38
+     * @return \DERHANSEN\SfEventMgt\Controller\EventController
39 39
      */
40 40
     public function findDemanded($demand)
41 41
     {
Please login to merge, or discard this patch.
Classes/Service/FluidStandaloneService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
      *
61 61
      * @param string $part
62 62
      * @throws \TYPO3\CMS\Extbase\Configuration\Exception\InvalidConfigurationTypeException
63
-     * @return array
63
+     * @return string[]
64 64
      */
65 65
     public function getTemplateFolders($part = 'template')
66 66
     {
Please login to merge, or discard this patch.
Classes/Validation/Validator/RegistrationValidator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
      * @param string $type Type
184 184
      * @param string $field The field
185 185
      *
186
-     * @return AbstractValidator
186
+     * @return string
187 187
      */
188 188
     protected function getValidator($type, $field)
189 189
     {
Please login to merge, or discard this patch.