We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 21 | class Executor |
||
| 22 | { |
||
| 23 | private $schema; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var EventDispatcherInterface |
||
| 27 | */ |
||
| 28 | private $dispatcher; |
||
| 29 | |||
| 30 | /** @var bool */ |
||
| 31 | private $throwException; |
||
| 32 | |||
| 33 | /** @var ErrorHandler */ |
||
| 34 | private $errorHandler; |
||
| 35 | |||
| 36 | 26 | public function __construct(Schema $schema, EventDispatcherInterface $dispatcher, $throwException, ErrorHandler $errorHandler) |
|
| 43 | |||
| 44 | /** |
||
| 45 | * @param bool $throwException |
||
| 46 | * |
||
| 47 | * @return $this |
||
| 48 | */ |
||
| 49 | 22 | public function setThrowException($throwException) |
|
| 55 | |||
| 56 | 26 | public function execute(array $data, array $context = []) |
|
| 73 | } |
||
| 74 |