Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeraymonddowning committed Mar 24, 2023
1 parent 6495800 commit 315ab09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function __construct(private readonly OutputInterface $output)

public static function isEnabled(): bool
{
return ((bool) Parallel::getGlobal(self::SERVER_VARIABLE_NAME)) ?? false;
return (bool) (Parallel::getGlobal(self::SERVER_VARIABLE_NAME) ?? false);
}

public function handleArguments(array $arguments): array
Expand Down

0 comments on commit 315ab09

Please sign in to comment.