| 1 | <?php |
||
| 16 | class ResolveInfo |
||
| 17 | { |
||
| 18 | /** @var AbstractField */ |
||
| 19 | protected $field; |
||
| 20 | |||
| 21 | /** @var Field[] */ |
||
| 22 | protected $fieldASTList; |
||
| 23 | |||
| 24 | /** @var ExecutionContextInterface */ |
||
| 25 | protected $executionContext; |
||
| 26 | |||
| 27 | 26 | public function __construct(AbstractField $field, array $fieldASTList, ExecutionContextInterface $executionContext) |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @return ExecutionContextInterface |
||
| 36 | */ |
||
| 37 | 9 | public function getExecutionContext() |
|
| 41 | |||
| 42 | /** |
||
| 43 | * @return AbstractField |
||
| 44 | */ |
||
| 45 | 1 | public function getField() |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @return Field[] |
||
| 52 | */ |
||
| 53 | 1 | public function getFieldASTList() |
|
| 57 | |||
| 58 | /** |
||
| 59 | * @return AbstractType |
||
| 60 | */ |
||
| 61 | 3 | public function getReturnType() |
|
| 65 | |||
| 66 | |||
| 67 | } |
||
| 68 |