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