Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mokhosh authored and github-actions[bot] committed Oct 1, 2024
1 parent 8fb2a68 commit da6e95e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Commands/MakeKanbanBoardCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ protected function getStub()
{
return file_exists($customPath = $this->laravel->basePath('/stubs/filament-kanban/board.stub'))
? $customPath
: __DIR__.'/../../stubs/board.stub';
: __DIR__ . '/../../stubs/board.stub';
}

protected function getDefaultNamespace($rootNamespace)
{
return $rootNamespace.'\Filament\Pages';
return $rootNamespace . '\Filament\Pages';
}
}
2 changes: 1 addition & 1 deletion src/FilamentKanbanServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function packageBooted(): void
}

// Testing
Testable::mixin(new TestsFilamentKanban());
Testable::mixin(new TestsFilamentKanban);
}

protected function getAssetPackageName(): ?string
Expand Down

0 comments on commit da6e95e

Please sign in to comment.