| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | 47 | public function __construct() |
|
| 13 | { |
||
| 14 | 47 | $config = [ |
|
| 15 | 47 | 'query' => fn () => _types()->get(QueryType::class), |
|
| 16 | 47 | 'mutation' => fn () => _types()->get(MutationType::class), |
|
| 17 | 47 | 'typeLoader' => fn (string $name) => _types()->loadType($name, 'Application\Model'), |
|
| 18 | 47 | ]; |
|
| 19 | |||
| 20 | 47 | parent::__construct($config); |
|
| 21 | } |
||
| 23 |