connection = new PDO("sqlite:$name"); $this->up(); } protected function up() : void { // Create Webmention table $sql = <<connection->exec($sql); } public function get(int $id): ?Webmention { $sql = "SELECT * FROM webmentions;"; $statement = $this->connection->query($sql); if ($statement == false) { return null; } $row = $statement->fetch(PDO::FETCH_ASSOC); if ($row) { return new Webmention( $row["id"], $row["target"], $row["source"], $row["content"], $row["author"] ); } return null; } public function getByPost(string $post): array { return []; } public function save(Webmention $webmention): ?int { $sql = <<< SQL INSERT INTO webmentions (id, target, source, content, author) VALUES (:id, :target, :source, :content, :author); SQL; $statement = $this->connection->prepare($sql); $success = $statement->execute((array) $webmention); $statement->closeCursor(); return $success ? (int) $this->connection->lastInsertId() : null; } public function delete(Webmention $webmention): void { throw new Exception("Method " . SqliteGateway::class . "::delete not implemented"); } } ?>