Passed
Branch master (9ff25d)
by Nicolas
03:59
created
src/Commands/GenerateFilterCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     }
58 58
 
59 59
     /**
60
-     * @return mixed
60
+     * @return string
61 61
      */
62 62
     protected function getTemplateContents()
63 63
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @return mixed
73
+     * @return string
74 74
      */
75 75
     protected function getDestinationFilePath()
76 76
     {
Please login to merge, or discard this patch.
src/Commands/GenerateProviderCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     }
58 58
 
59 59
     /**
60
-     * @return mixed
60
+     * @return string
61 61
      */
62 62
     protected function getTemplateContents()
63 63
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @return mixed
73
+     * @return string
74 74
      */
75 75
     protected function getDestinationFilePath()
76 76
     {
Please login to merge, or discard this patch.
src/Commands/MakeRequestCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     }
58 58
 
59 59
     /**
60
-     * @return mixed
60
+     * @return string
61 61
      */
62 62
     protected function getTemplateContents()
63 63
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @return mixed
73
+     * @return string
74 74
      */
75 75
     protected function getDestinationFilePath()
76 76
     {
Please login to merge, or discard this patch.
src/Repository.php 1 patch
Doc Comments   +9 added lines, -10 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * Get scanned modules paths.
91 91
      *
92
-     * @return array
92
+     * @return string[]
93 93
      */
94 94
     public function getScanPaths()
95 95
     {
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
     /**
328 328
      * Alternative for "find" method.
329 329
      *
330
-     * @param $name
330
+     * @param string $name
331 331
      */
332 332
     public function get($name)
333 333
     {
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     /**
366 366
      * Get module path for a specific module.
367 367
      *
368
-     * @param $module
368
+     * @param string $module
369 369
      *
370 370
      * @return string
371 371
      */
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
     /**
394 394
      * Get a specific config data from a configuration file.
395 395
      *
396
-     * @param $key
396
+     * @param string $key
397 397
      *
398 398
      * @return mixed
399 399
      */
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
     /**
420 420
      * Set module used for cli session.
421 421
      *
422
-     * @param $name
422
+     * @param string $name
423 423
      *
424 424
      * @throws ModuleNotFoundException
425 425
      */
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
     /**
434 434
      * Get module used for cli session.
435 435
      *
436
-     * @return string
436
+     * @return Module
437 437
      */
438 438
     public function getUsedNow()
439 439
     {
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
     /**
444 444
      * Get used now.
445 445
      *
446
-     * @return string
446
+     * @return Module
447 447
      */
448 448
     public function getUsed()
449 449
     {
@@ -474,7 +474,6 @@  discard block
 block discarded – undo
474 474
      * Get asset url from a specific module.
475 475
      *
476 476
      * @param string $asset
477
-     * @param bool   $secure
478 477
      *
479 478
      * @return string
480 479
      */
@@ -518,7 +517,7 @@  discard block
 block discarded – undo
518 517
      *
519 518
      * @param string $name
520 519
      *
521
-     * @return bool
520
+     * @return boolean|null
522 521
      */
523 522
     public function enable($name)
524 523
     {
@@ -530,7 +529,7 @@  discard block
 block discarded – undo
530 529
      *
531 530
      * @param string $name
532 531
      *
533
-     * @return bool
532
+     * @return boolean|null
534 533
      */
535 534
     public function disable($name)
536 535
     {
Please login to merge, or discard this patch.