Completed
Pull Request — master (#354)
by Martin
02:25
created
src/Commands/CommandMakeCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
 
76 76
     /**
77
-     * @return mixed
77
+     * @return string
78 78
      */
79 79
     protected function getTemplateContents()
80 80
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 
99 99
 
100 100
     /**
101
-     * @return mixed
101
+     * @return string
102 102
      */
103 103
     protected function getDestinationFilePath()
104 104
     {
Please login to merge, or discard this patch.
src/Commands/FactoryMakeCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
 
51 51
     /**
52
-     * @return mixed
52
+     * @return string
53 53
      */
54 54
     protected function getTemplateContents()
55 55
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
 
60 60
     /**
61
-     * @return mixed
61
+     * @return string
62 62
      */
63 63
     protected function getDestinationFilePath()
64 64
     {
Please login to merge, or discard this patch.
src/Commands/MiddlewareMakeCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
 
62 62
     /**
63
-     * @return mixed
63
+     * @return string
64 64
      */
65 65
     protected function getTemplateContents()
66 66
     {
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
 
76 76
     /**
77
-     * @return mixed
77
+     * @return string
78 78
      */
79 79
     protected function getDestinationFilePath()
80 80
     {
Please login to merge, or discard this patch.
src/Commands/PolicyMakeCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
 
60 60
     /**
61
-     * @return mixed
61
+     * @return string
62 62
      */
63 63
     protected function getTemplateContents()
64 64
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
 
74 74
     /**
75
-     * @return mixed
75
+     * @return string
76 76
      */
77 77
     protected function getDestinationFilePath()
78 78
     {
Please login to merge, or discard this patch.
src/Commands/ProviderMakeCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
 
76 76
     /**
77
-     * @return mixed
77
+     * @return string
78 78
      */
79 79
     protected function getTemplateContents()
80 80
     {
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
 
91 91
 
92 92
     /**
93
-     * @return mixed
93
+     * @return string
94 94
      */
95 95
     protected function getDestinationFilePath()
96 96
     {
Please login to merge, or discard this patch.
src/Commands/RequestMakeCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
 
62 62
     /**
63
-     * @return mixed
63
+     * @return string
64 64
      */
65 65
     protected function getTemplateContents()
66 66
     {
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
 
76 76
     /**
77
-     * @return mixed
77
+     * @return string
78 78
      */
79 79
     protected function getDestinationFilePath()
80 80
     {
Please login to merge, or discard this patch.
src/Commands/RuleMakeCommand.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
 
60 60
     /**
61
-     * @return mixed
61
+     * @return string
62 62
      */
63 63
     protected function getTemplateContents()
64 64
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
 
74 74
     /**
75
-     * @return mixed
75
+     * @return string
76 76
      */
77 77
     protected function getDestinationFilePath()
78 78
     {
Please login to merge, or discard this patch.
src/Commands/ListenerMakeCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
     public function handle()
34 34
     {
35
-        if ( ! $this->option('event')) {
35
+        if (!$this->option('event')) {
36 36
             $this->error('The --event option is necessary');
37 37
 
38 38
             return;
Please login to merge, or discard this patch.