| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function getMenuTypeById($id) |
||
| 10 | { |
||
| 11 | $stmt = $this->pdo->prepare("SELECT * FROM {$this->prefix}menu_types WHERE id=?"); |
||
| 12 | $stmt->execute([$id]); |
||
| 13 | $res = $stmt->fetch(\PDO::FETCH_OBJ); |
||
| 14 | |||
| 15 | return new MenuType([ |
||
| 16 | 'id' => $res->id, |
||
| 17 | 'title' => $res->title, |
||
| 18 | 'description' => $res->description, |
||
| 19 | 'menu_type' => $res->menu_type, |
||
| 20 | ]); |
||
| 21 | } |
||
| 22 | |||
| 35 |