PatchBot/modules/GCLog.php

14 lines
322 B
PHP

<?php
class GCLog extends PatchBase {
function __construct() {
parent::__construct('Steffen Lange', 'Geiger Counter Logger', 'https://www.gclog.de/');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/stelas/GCLog/tags'))
return $this->parse_json('name');
return false;
}
}
?>