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 Jan 2, 2025
1 parent c924baf commit 66bd967
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/Skeleton.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace VendorName\Skeleton;

class Skeleton
{
}
class Skeleton {}
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 66bd967

Please sign in to comment.