Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and github-actions[bot] committed Jul 2, 2022
1 parent 2122752 commit a7fc79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SqlCommenterServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function packageBooted(): void
$this->app->singleton(SqlCommenter::class, function () {
$commenterClass = config('sql-commenter.commenter_class');

if (!is_a($commenterClass, SqlCommenter::class, true)) {
if (! is_a($commenterClass, SqlCommenter::class, true)) {
throw InvalidSqlCommenter::make($commenterClass);
}

Expand Down

0 comments on commit a7fc79c

Please sign in to comment.