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 | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | abstract class TypeGuesser implements TypeGuesserInterface |
||
12 | { |
||
13 | protected ClassesTypesMap $map; |
||
14 | |||
15 | public function __construct(ClassesTypesMap $map) |
||
18 | } |
||
19 | |||
20 | abstract public function supports(Reflector $reflector): bool; |
||
21 | |||
22 | abstract public function getName(): string; |
||
23 | |||
24 | abstract public function guessType(ReflectionClass $reflectionClass, Reflector $reflector, array $filterGraphQLTypes = []): ?string; |
||
25 | } |
||
26 |