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\Event;
use GraphQL\Executor\ExecutionResult;
use Symfony\Contracts\EventDispatcher\Event;
final class ExecutorResultEvent extends Event
{
/** @var ExecutionResult */
private $result;
/** @var ExecutorArgumentsEvent */
private $executorArguments;
public function __construct(ExecutionResult $result, ExecutorArgumentsEvent $executorArguments)
$this->result = $result;
$this->executorArguments = $executorArguments;
}
/**
* @return ExecutionResult
*/
public function getResult(): ExecutionResult
return $this->result;
public function getExecutorArguments(): ExecutorArgumentsEvent
return $this->executorArguments;