We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ResolverArgs |
||
| 11 | { |
||
| 12 | public ArgumentInterface $args; |
||
| 13 | public ResolveInfo $info; |
||
| 14 | public ArrayObject $context; |
||
| 15 | |||
| 16 | /** @var mixed */ |
||
| 17 | public $value; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param mixed $value |
||
| 21 | */ |
||
| 22 | public function __construct($value, ArgumentInterface $args, ArrayObject $context, ResolveInfo $info) |
||
| 30 |