Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | class JoinClassPathExpression extends Node |
||
11 | { |
||
12 | /** |
||
13 | * @var mixed |
||
14 | */ |
||
15 | public $abstractSchemaName; |
||
16 | |||
17 | /** |
||
18 | * @var mixed |
||
19 | */ |
||
20 | public $aliasIdentificationVariable; |
||
21 | |||
22 | /** |
||
23 | * @param mixed $abstractSchemaName |
||
24 | * @param mixed $aliasIdentificationVar |
||
25 | */ |
||
26 | public function __construct($abstractSchemaName, $aliasIdentificationVar) |
||
27 | { |
||
28 | $this->abstractSchemaName = $abstractSchemaName; |
||
29 | $this->aliasIdentificationVariable = $aliasIdentificationVar; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function dispatch($walker) |
||
38 | } |
||
39 | } |
||
40 |