Completed
Push — master ( 131ce4...c385fb )
by Sebastien
05:48 queued 02:38
created
src/Commands/CreatePackage.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
         $package = Str::lower($this->argument('package'));
70 70
         $this->alert("Creating a new package $package");
71 71
 
72
-        if (! $this->packagist->checkFormat($package)) {
72
+        if (!$this->packagist->checkFormat($package)) {
73 73
             $this->error('Package name format must be vendor/package');
74 74
 
75 75
             return 1;
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         $this->info("Require package $vendor/$package...");
131 131
         $this->composer->require("$vendor/$package:@dev", $this->option('dev'));
132 132
 
133
-        if (! is_link(base_path("vendor/$vendor/$package"))) {
133
+        if (!is_link(base_path("vendor/$vendor/$package"))) {
134 134
             $this->error('Package installed is not the local version!');
135 135
 
136 136
             return 1;
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 
148 148
         $result = $this->ask($question, $default);
149 149
 
150
-        if (! $result) {
150
+        if (!$result) {
151 151
             $this->error('Answer cannot be empty');
152 152
 
153 153
             return $this->forceAnswer($question, $default);
Please login to merge, or discard this patch.