Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspertey authored and github-actions[bot] committed May 16, 2024
1 parent 497b8b0 commit 186bab2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/Commands/Concerns/ResolvesDomainFromInput.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

trait ResolvesDomainFromInput
{
use OverridesHandle,
CanPromptForDomain;
use CanPromptForDomain,
OverridesHandle;

protected $nameIsAbsolute = false;

Expand Down Expand Up @@ -91,7 +91,7 @@ protected function beforeHandle()
};

// If the domain is not set, prompt for it
if (!$this->domain) {
if (! $this->domain) {
$this->domain = new Domain($this->promptForDomainName());
}

Expand Down
3 changes: 0 additions & 3 deletions src/Commands/DomainModelMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@
namespace Lunarstorm\LaravelDDD\Commands;

use Illuminate\Foundation\Console\ModelMakeCommand;
use Illuminate\Support\Str;
use Lunarstorm\LaravelDDD\Commands\Concerns\ResolvesDomainFromInput;
use Lunarstorm\LaravelDDD\Support\DomainResolver;
use Symfony\Component\Console\Input\InputOption;

class DomainModelMakeCommand extends ModelMakeCommand
{
Expand Down

0 comments on commit 186bab2

Please sign in to comment.