Remove abandoned TinyCheck

This commit is contained in:
Steffen Lange 2024-10-02 11:24:19 +02:00
parent 93876bfa69
commit f2cb0eb0ea

View file

@ -1,14 +0,0 @@
<?php
class TinyCheck extends PatchBase {
function __construct() {
parent::__construct('Kaspersky Lab', 'TinyCheck', 'https://github.com/KasperskyLab/TinyCheck/wiki');
}
function check() : bool {
if ($this->fetch_json('https://api.github.com/repos/KasperskyLab/TinyCheck/releases/latest'))
return $this->parse_json('tag_name');
return false;
}
}
?>