Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpisa authored and github-actions[bot] committed May 27, 2023
1 parent 3365b8c commit 59c20ef
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Commands/ActionMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ protected function getOptions(): array
*/
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\Action';
return $rootNamespace.'\Action';
}
}
12 changes: 6 additions & 6 deletions src/StarterKitServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ public function boot()
parent::boot();

$this->publishes([
__DIR__ . '/../stubs/tlint.stub' => $this->app->basePath('tlint.json'),
__DIR__ . '/../stubs/duster.stub' => $this->app->basePath('duster.json'),
__DIR__ . '/../stubs/pint.stub' => $this->app->basePath('pint.json'),
__DIR__ . '/../stubs/phpstan.stub' => $this->app->basePath('phpstan.neon'),
__DIR__ . '/../stubs/tests/Feature/architecture-test.stub' => $this->app->basePath('tests/Feature/ArchitectureTest.php'),
__DIR__ . '/../stubs/laravel' => $this->app->basePath('stubs'),
__DIR__.'/../stubs/tlint.stub' => $this->app->basePath('tlint.json'),
__DIR__.'/../stubs/duster.stub' => $this->app->basePath('duster.json'),
__DIR__.'/../stubs/pint.stub' => $this->app->basePath('pint.json'),
__DIR__.'/../stubs/phpstan.stub' => $this->app->basePath('phpstan.neon'),
__DIR__.'/../stubs/tests/Feature/architecture-test.stub' => $this->app->basePath('tests/Feature/ArchitectureTest.php'),
__DIR__.'/../stubs/laravel' => $this->app->basePath('stubs'),
]);
}
}
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ protected function setUp(): void
parent::setUp();

Factory::guessFactoryNamesUsing(
fn (string $modelName) => 'Rockero\\StarterKit\\Database\\Factories\\' . class_basename($modelName) . 'Factory'
fn (string $modelName) => 'Rockero\\StarterKit\\Database\\Factories\\'.class_basename($modelName).'Factory'
);
}

Expand Down

0 comments on commit 59c20ef

Please sign in to comment.