diff options
Diffstat (limited to 'src/BridgeImpl.php')
-rw-r--r-- | src/BridgeImpl.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/BridgeImpl.php b/src/BridgeImpl.php index df21a89..c299efa 100644 --- a/src/BridgeImpl.php +++ b/src/BridgeImpl.php @@ -144,16 +144,6 @@ class BridgeImpl implements Bridge { } } - public function removePost($postId) { - throw_if_null($postId); - - $sql = 'DELETE FROM posts WHERE post_id = ' . $postId; - - $count = $this->db->exec($sql); - - return $count > 0; - } - protected function get_exactly_one_row($sql) { $result = $this->db->query($sql); |