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
declare(strict_types=1);
namespace Overblog\GraphQLBundle\Exception;
use Throwable;
class EvaluatorIsNotAllowedException extends \Exception
{
public function __construct(string $expressionFunctionName, int $code = 0, Throwable $previous = null)
parent::__construct(
"The expression function '$expressionFunctionName' cannot be used by it's evaluator.",
$code,
$previous
);
}
public function __invoke(): void
throw $this;