Completed
Push — master ( d5f083...6be0d7 )
by Pierre
22:45 queued 19:14
created
src/Commands/CreateCommand.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
     /**
152 152
      * Check if a given email is a good email.
153 153
      *
154
-     * @param $email
154
+     * @param string $email
155 155
      *
156 156
      * @return bool
157 157
      */
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     {
66 66
         return $this->askAndValidate(
67 67
             'Package name (<vendor>/<name>) [<comment>'.$package.'</comment>]: ',
68
-            function ($value) use ($package) {
68
+            function($value) use ($package) {
69 69
                 if (null === $value) {
70 70
                     return $package;
71 71
                 }
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
         return $this->askAndValidate(
95 95
             'Author [<comment>'.$author.'</comment>]: ',
96
-            function ($value) use ($self, $author) {
96
+            function($value) use ($self, $author) {
97 97
                 if (null === $value) {
98 98
                     return $author;
99 99
                 }
Please login to merge, or discard this patch.