1 | <?php |
||
15 | class SingularNode extends AbstractNode |
||
16 | { |
||
17 | use DuplicateTrait; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $innerKey; |
||
23 | |||
24 | /** |
||
25 | * @param array $columns |
||
26 | * @param string $innerKey Inner relation key (for example user_id) |
||
27 | * @param string|null $outerKey Outer (parent) relation key (for example id = parent.id) |
||
28 | * @param array $primaryKeys |
||
29 | */ |
||
30 | public function __construct( |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | protected function pushData(array &$data) |
||
65 | } |