Completed
Push — task/testing-framework ( 3ed846...450f75 )
by Torben
06:15
created
Classes/Controller/EventController.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
      * Detail view for an event
307 307
      *
308 308
      * @param \DERHANSEN\SfEventMgt\Domain\Model\Event $event Event
309
-     * @return mixed string|void
309
+     * @return string|null string|void
310 310
      */
311 311
     public function detailAction(Event $event = null)
312 312
     {
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
      *
368 368
      * @param Event $event The event
369 369
      *
370
-     * @return string|false
370
+     * @return string|null
371 371
      */
372 372
     public function icalDownloadAction(Event $event = null)
373 373
     {
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
      *
387 387
      * @param \DERHANSEN\SfEventMgt\Domain\Model\Event $event Event
388 388
      *
389
-     * @return mixed string|void
389
+     * @return string|null string|void
390 390
      */
391 391
     public function registrationAction(Event $event = null)
392 392
     {
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
      * @validate $registration \DERHANSEN\SfEventMgt\Validation\Validator\RegistrationFieldValidator
511 511
      * @validate $registration \DERHANSEN\SfEventMgt\Validation\Validator\RegistrationValidator
512 512
      *
513
-     * @return mixed string|void
513
+     * @return string|null string|void
514 514
      */
515 515
     public function saveRegistrationAction(Registration $registration, Event $event)
516 516
     {
@@ -931,7 +931,7 @@  discard block
 block discarded – undo
931 931
      * Following cache tags will be added to tsfe:
932 932
      * "tx_sfeventmgt_uid_[event:uid]"
933 933
      *
934
-     * @param array $eventRecords array with event records
934
+     * @param Event[] $eventRecords array with event records
935 935
      */
936 936
     public function addCacheTagsByEventRecords(array $eventRecords)
937 937
     {
Please login to merge, or discard this patch.