PatchBot/modules/MariaDB1011.php
2023-02-23 16:56:22 +01:00

15 lines
376 B
PHP

<?php
class MariaDB1011 extends PatchBase {
function __construct() {
parent::__construct('MariaDB Foundation', 'MariaDB', 'https://mariadb.org/download/');
$this->patch->setBranch('10.11');
}
function check() : bool {
if ($this->fetch_json('https://downloads.mariadb.org/rest-api/mariadb/10.11/'))
return $this->parse_json('release_id');
return false;
}
}
?>