for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
namespace Overblog\GraphQLBundle\ExpressionLanguage;
use Symfony\Component\ExpressionLanguage\ExpressionFunction as BaseExpressionFunction;
class ExpressionFunction extends BaseExpressionFunction
{
public function __construct($name, callable $compiler)
parent::__construct($name, $compiler, function () {
throw new \RuntimeException('Evaluator is not needed');
});
}