We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0060d3b commit 32f994cCopy full SHA for 32f994c
tests/VersionHelper.php
@@ -67,7 +67,7 @@ public static function webonyxGraphQLPHPVersion()
67
if (empty($version)) {
68
$composerBinPath = \file_exists(__DIR__.'/../composer.phar') ? __DIR__.'/../composer.phar' : '`which composer`';
69
$commandline = $composerBinPath.' show \'webonyx/graphql-php\' | grep \'versions\' | grep -o -E \'\*\ .+\' | cut -d\' \' -f2 | cut -d\',\' -f1';
70
- if (is_callable([Process::class, 'fromShellCommandline'])) {
+ if (\is_callable([Process::class, 'fromShellCommandline'])) {
71
$process = Process::fromShellCommandline($commandline);
72
} else {
73
$process = new Process($commandline);
0 commit comments