Completed
Push — master ( ae6b20...1ac407 )
by Nicolas
07:27
created
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/Commands/GenerateMiddlewareCommand.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   +7 added lines, -7 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
     {
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
     /**
368 368
      * Get module path for a specific module.
369 369
      *
370
-     * @param $module
370
+     * @param string $module
371 371
      *
372 372
      * @return string
373 373
      */
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
     /**
396 396
      * Get a specific config data from a configuration file.
397 397
      *
398
-     * @param $key
398
+     * @param string $key
399 399
      *
400 400
      * @return mixed
401 401
      */
@@ -435,7 +435,7 @@  discard block
 block discarded – undo
435 435
     /**
436 436
      * Get module used for cli session.
437 437
      *
438
-     * @return string
438
+     * @return Module
439 439
      */
440 440
     public function getUsedNow()
441 441
     {
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
     /**
446 446
      * Get used now.
447 447
      *
448
-     * @return string
448
+     * @return Module
449 449
      */
450 450
     public function getUsed()
451 451
     {
@@ -519,7 +519,7 @@  discard block
 block discarded – undo
519 519
      *
520 520
      * @param string $name
521 521
      *
522
-     * @return bool
522
+     * @return boolean|null
523 523
      */
524 524
     public function enable($name)
525 525
     {
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
      *
532 532
      * @param string $name
533 533
      *
534
-     * @return bool
534
+     * @return boolean|null
535 535
      */
536 536
     public function disable($name)
537 537
     {
Please login to merge, or discard this patch.