PatchBot/modules/Bludit.php
2020-02-05 16:18:16 +01:00

14 lines
325 B
PHP

<?php
class Bludit extends PatchBase {
function __construct() {
parent::__construct('Diego Najar', 'Bludit', 'https://www.bludit.com/');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/bludit/bludit/releases/latest', true))
return $this->parse_json('tag_name');
return false;
}
}
?>