Skip to content

Commit

Permalink
fix phpstan error
Browse files Browse the repository at this point in the history
  • Loading branch information
david-d-h committed Oct 16, 2023
1 parent 80d1ed7 commit 447ad89
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Checks/OpCacheCheck.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ protected function isJitEnabled(): bool

$configuration = opcache_get_status()['jit'];

return $configuration['enabled'] && $configuration['on']
?? false;
return $configuration['enabled'] && $configuration['on'];
}
}

0 comments on commit 447ad89

Please sign in to comment.