item = Db::getRow('select * from items_main where id = ?', [$id]); } public static function getItemData(int $id): string { return Db::getValue('select data from items_main_data where items_id = ?', [$id]); } public function getName() { return $this->item['name']; } public function getImage() { return $this->item['img']; } }