PatchBot/modules/Firebird.php
2023-08-10 22:53:18 +02:00

14 lines
357 B
PHP

<?php
class Firebird extends PatchBase {
function __construct() {
parent::__construct('Firebird Foundation', 'Firebird', 'https://firebirdsql.org/en/downloads/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/FirebirdSQL/firebird/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>