We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1.1865 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 149 | public function __construct($name = 'resolver') |
|
15 | { |
||
16 | 149 | parent::__construct( |
|
17 | $name, |
||
18 | 149 | function (string $alias, string $args = '[]') { |
|
19 | @trigger_error( |
||
20 | "The 'resolver' expression function is deprecated since 0.14 and will be removed in 1.0. Use 'query' instead. For more info visit: https://github.com/overblog/GraphQLBundle/issues/775", |
||
21 | E_USER_DEPRECATED |
||
22 | ); |
||
23 | |||
24 | return "$this->gqlServices->query($alias, ...$args)"; |
||
25 | 149 | } |
|
29 |