Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
wangta69 committed Oct 15, 2024
1 parent 244aa30 commit 37a04ad
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions src/Console/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,16 @@ public function __construct()

public function handle()
{
$composer = $this->argument('composer');

$type = $this->argument('type');
if($composer === 'editor') {
switch($type) {
case 'full':
return $this->installLaravelEditor();
default:
return;
}
}
return;

switch($type) {
case 'full':
return $this->installLaravelEditor();
default:
return;
}

}


Expand Down

0 comments on commit 37a04ad

Please sign in to comment.