PatchBot/modules/Everything.php
2020-10-07 19:04:00 +02:00

14 lines
342 B
PHP

<?php
class Everything extends PatchBase {
function __construct() {
parent::__construct('David Carpenter', 'Everything', 'https://www.voidtools.com/downloads/');
}
function check() : bool {
if ($this->fetch('https://www.voidtools.com/downloads/'))
return $this->parse('/>Download Everything ([\d\.]+)</');
return false;
}
}
?>