Skip to content

Commit

Permalink
style: fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-frey authored and github-actions[bot] committed Apr 1, 2024
1 parent 3fe5bc7 commit 8c397e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/SkeletonServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public function configurePackage(Package $package): void
->hasConfigFile()
->hasViews()
->hasMigration('create_skeleton_table')
->hasCommand(SkeletonCommand::class);
->hasCommand(SkeletonCommand::class)
;
}
}
3 changes: 2 additions & 1 deletion tests/ArchTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

it('will not use debugging functions')
->expect(['dd', 'dump', 'ray'])
->each->not->toBeUsed();
->each->not->toBeUsed()
;

0 comments on commit 8c397e4

Please sign in to comment.