| 1 | <?php |
||
| 15 | class SinguralNode extends AbstractNode |
||
| 16 | { |
||
| 17 | use DuplicateTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $localKey; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param array $columns |
||
| 26 | * @param string $localKey Inner relation key (for example user_id) |
||
| 27 | * @param string|null $parentKey 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 registerData(array &$data) |
||
| 60 | } |