Skip to content

Commit

Permalink
Negate condition
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricziel committed Jun 16, 2024
1 parent 6f1f669 commit 6694910
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ final class HttpClientInstrumentation

public static function isSupportedImplementation(string $class): bool
{
return in_array($class, self::NON_SUPPORTED_CLIENTS);
return false === in_array($class, self::NON_SUPPORTED_CLIENTS);
}

public static function register(): void
Expand Down

0 comments on commit 6694910

Please sign in to comment.