PatchBot/modules/Fscrypt.php
2020-03-31 14:21:21 +02:00

14 lines
330 B
PHP

<?php
class Fscrypt extends PatchBase {
function __construct() {
parent::__construct('Joe Richey', 'fscrypt', 'https://github.com/google/fscrypt');
}
function check() : bool {
if ($this->fetch('https://api.github.com/repos/google/fscrypt/releases', true))
return $this->parse_json('tag_name');
return false;
}
}
?>