PatchBot/modules/cTop.php
2019-07-15 22:27:48 +02:00

14 lines
316 B
PHP

<?php
class cTop extends PatchBase {
function __construct() {
parent::__construct('Bradley Cicenas', 'ctop', 'https://ctop.sh/');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/bcicen/ctop/releases/latest', true))
return $this->parse_json('tag_name');
return false;
}
}
?>