Skip to content

Commit

Permalink
Fix phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
muglug committed Jan 13, 2020
1 parent 6c771e5 commit 5d15ef0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Psalm/Internal/Analyzer/ProjectAnalyzer.php
Expand Up @@ -320,10 +320,10 @@ public function server($address = '127.0.0.1:12345', bool $socket_server_mode =
$this->file_reference_provider->loadReferenceCache();
$this->codebase->enterServerMode();

if (ini_get('pcre.jit') === '1'
&& PHP_OS === 'Darwin'
&& version_compare(PHP_VERSION, '7.3.0') >= 0
&& version_compare(PHP_VERSION, '7.4.0') < 0
if (\ini_get('pcre.jit') === '1'
&& \PHP_OS === 'Darwin'
&& \version_compare(\PHP_VERSION, '7.3.0') >= 0
&& \version_compare(\PHP_VERSION, '7.4.0') < 0
) {
// do nothing
} else {
Expand Down

0 comments on commit 5d15ef0

Please sign in to comment.