Skip to content

Commit

Permalink
chore: fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Mar 11, 2024
1 parent dab42c0 commit a5a0c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Guards/AuthenticationGuard.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public function user(): ?Authenticatable
* @var ?Authenticatable $lastResponse
*/
// @codeCoverageIgnoreStart
if (class_exists('\Laravel\Telescope\Telescope') && config('telescope.enabled') === true) {
if (class_exists('\Laravel\Telescope\Telescope') && true === config('telescope.enabled')) {
static $depth = 0;
static $lastCalled = null;

Expand Down

0 comments on commit a5a0c28

Please sign in to comment.