Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | class Factory |
||
16 | { |
||
17 | /** |
||
18 | * @var string|null |
||
19 | */ |
||
20 | private $name; |
||
21 | |||
22 | /** |
||
23 | * @param mixed[] $attributes |
||
24 | */ |
||
25 | public function __construct(array $attributes = []) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * Returns the name of the GraphQL input type. |
||
32 | * If not specified, the name of the method should be used instead. |
||
33 | * |
||
34 | * @return null|string |
||
35 | */ |
||
36 | public function getName(): ?string |
||
41 |