255], ]; } /** * {@inheritdoc} */ public function attributeLabels() { return [ 'id' => 'ID', 'title' => 'Title', 'company' => 'ID company', 'number' => 'Number of warehouse', ]; } /** * @return Companies|null */ public function getCompany() { return Companies::findOne($this->company); } /** * @return Stack[] */ public function getStacks() { return Stack::findAll(['warehouse' => $this->id]); } }