1 | <?php |
||
11 | class FunctionCallPattern implements PatternInterface { |
||
12 | |||
13 | /** |
||
14 | * @var Query|null |
||
15 | */ |
||
16 | private $nameQuery; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * @param Query $query |
||
21 | * @return $this |
||
22 | */ |
||
23 | 3 | public function withName(Query $query) { |
|
27 | |||
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | 6 | public function __invoke(QuerySequence $querySequence) { |
|
58 | |||
59 | } |