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

14 lines
312 B
PHP

<?php
class SevenZip extends PatchBase {
function __construct() {
parent::__construct('Igor Pavlov', '7-Zip', 'https://www.7-zip.org/');
}
function check() : bool {
if ($this->fetch('https://www.7-zip.org/download.html'))
return $this->parse('/Download 7-Zip ([\d\.]+) \(/');
return false;
}
}
?>