| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function totalNumberPostsInCategory(int $categoryId): int |
||
| 39 | { |
||
| 40 | $sql = "SELECT COUNT(*) FROM $this->postsTbl WHERE published = 1 AND categories_idcategories = :categoryId "; |
||
| 41 | $this->query($sql); |
||
| 42 | $this->bind(":categoryId", $categoryId, \PDO::PARAM_INT); |
||
| 43 | $this->execute(); |
||
| 44 | return $this->stmt->fetchColumn(); |
||
| 45 | } |
||
| 61 | } |