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 Nov 12, 2023
1 parent 976889e commit f94768c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/MakeModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ protected function createBaseModelIfNeeded($baseModel)

// base_path(config('ddd.paths.domains') . '/Shared/Models/BaseModel.php')

if (!file_exists($baseModelPath)) {
if (! file_exists($baseModelPath)) {
$this->warn("Base model {$baseModel} doesn't exist, generating...");

$this->call(MakeBaseModel::class, [
Expand All @@ -95,7 +95,7 @@ protected function createFactory()
{
$this->call(MakeFactory::class, [
'domain' => $this->getDomain(),
'name' => $this->getNameInput() . 'Factory',
'name' => $this->getNameInput().'Factory',
'--model' => $this->qualifyClass($this->getNameInput()),
]);
}
Expand Down

0 comments on commit f94768c

Please sign in to comment.