Total Complexity | 7 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class QueryBuilder implements |
||
15 | HasEventName |
||
16 | { |
||
17 | /** |
||
18 | * @param string[] $entityAliasMap |
||
19 | * @param mixed[] $args |
||
20 | */ |
||
21 | public function __construct( |
||
29 | } |
||
30 | |||
31 | public function eventName(): string |
||
32 | { |
||
33 | return $this->eventName; |
||
34 | } |
||
35 | |||
36 | public function getQueryBuilder(): DoctrineQueryBuilder |
||
39 | } |
||
40 | |||
41 | public function getObjectValue(): mixed |
||
42 | { |
||
43 | return $this->objectValue; |
||
44 | } |
||
45 | |||
46 | /** @return mixed[] */ |
||
47 | public function getArgs(): array |
||
48 | { |
||
49 | return $this->args; |
||
50 | } |
||
51 | |||
52 | public function getContext(): mixed |
||
53 | { |
||
54 | return $this->context; |
||
55 | } |
||
56 | |||
57 | public function getInfo(): ResolveInfo |
||
60 | } |
||
61 | } |
||
62 |