diff --git a/src/Commands/NewPackage.php b/src/Commands/NewPackage.php index 5ce3eb9..187b080 100644 --- a/src/Commands/NewPackage.php +++ b/src/Commands/NewPackage.php @@ -65,8 +65,8 @@ public function handle() $vendor = $this->argument('vendor'); $name = $this->argument('name'); - if (stripos($vendor, "/") > 0) { - $part = explode("/", $vendor); + if (stripos($vendor, '/') > 0) { + $part = explode('/', $vendor); $vendor = $part[0]; $name = $part[1]; }