Skip to content

Commit 32f994c

Browse files
author
Jeremiah VALERIE
committed
Give some love to PHPCS
1 parent 0060d3b commit 32f994c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/VersionHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static function webonyxGraphQLPHPVersion()
6767
if (empty($version)) {
6868
$composerBinPath = \file_exists(__DIR__.'/../composer.phar') ? __DIR__.'/../composer.phar' : '`which composer`';
6969
$commandline = $composerBinPath.' show \'webonyx/graphql-php\' | grep \'versions\' | grep -o -E \'\*\ .+\' | cut -d\' \' -f2 | cut -d\',\' -f1';
70-
if (is_callable([Process::class, 'fromShellCommandline'])) {
70+
if (\is_callable([Process::class, 'fromShellCommandline'])) {
7171
$process = Process::fromShellCommandline($commandline);
7272
} else {
7373
$process = new Process($commandline);

0 commit comments

Comments
 (0)