Skip to content

Commit

Permalink
Add space after unary operator
Browse files Browse the repository at this point in the history
  • Loading branch information
ksntcrq committed Jul 1, 2021
1 parent 4582345 commit 7b0235c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Fixtures/SearchableModelWithSoftDeletes.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ class SearchableModelWithSoftDeletes extends Model

public function shouldBeSearchable()
{
return !$this->trashed() && ! is_null($this->published_at);
return ! $this->trashed() && ! is_null($this->published_at);
}
}

0 comments on commit 7b0235c

Please sign in to comment.