1 | <?php |
||
15 | class Row |
||
16 | { |
||
17 | /** @var array Field table row fields collection */ |
||
18 | protected $collection; |
||
19 | |||
20 | /** @var int Material primary identifier */ |
||
21 | protected $primary; |
||
22 | |||
23 | /** |
||
24 | * Row constructor. |
||
25 | * |
||
26 | * @param int $primary Material entity identifier |
||
27 | * @param array $collection Collection of row additional field values |
||
28 | */ |
||
29 | public function __construct($primary, array $collection) |
||
39 | } |
||
40 |