['type' => 'integer'], 'category' => ['type' => 'integer', 'null' => false], 'name' => ['type' => 'string', 'null' => false], 'price' => ['type' => 'integer'], '_constraints' => ['primary' => ['type' => 'primary', 'columns' => ['category', 'id']]], ]; /** * records property * * @var array */ public $records = [ ['id' => 1, 'category' => 1, 'name' => 'First product', 'price' => 10], ['id' => 2, 'category' => 2, 'name' => 'Second product', 'price' => 20], ['id' => 3, 'category' => 3, 'name' => 'Third product', 'price' => 30], ]; }