We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
php -v PHP 8.2.4 (cli) (built: Mar 14 2023 17:54:25) (ZTS Visual C++ 2019 x64) Copyright (c) The PHP Group Zend Engine v4.2.4, Copyright (c) Zend Technologies with Xdebug v3.2.0, Copyright (c) 2002-2022, by Derick Rethans
I got error: Non-static method GraphQL\Util\StringLiteralFormatter::isVariable() cannot be called statically when I try to:
Non-static method GraphQL\Util\StringLiteralFormatter::isVariable() cannot be called statically
$client->runQuery($gql);
When I look in file src/Util/StringLiteralFormatter.php we can see in function formatValueForRHS that isVariable is called statically
formatValueForRHS
isVariable
While the function doesn't have the static attribute
static
private function isVariable(string $value): bool
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I got error:
Non-static method GraphQL\Util\StringLiteralFormatter::isVariable() cannot be called statically
when I try to:When I look in file src/Util/StringLiteralFormatter.php we can see in function
formatValueForRHS
thatisVariable
is called staticallyWhile the function doesn't have the
static
attributeThe text was updated successfully, but these errors were encountered: