PatchBot/modules/ReactOS.php
2021-09-29 01:57:28 +02:00

14 lines
305 B
PHP

<?php
class ReactOS extends PatchBase {
function __construct() {
parent::__construct('ReactOS Team', 'ReactOS', 'https://reactos.org/download/');
}
function check() : bool {
if ($this->fetch('https://reactos.org/'))
return $this->parse('/Download ReactOS ([\d\.]+)/');
return false;
}
}
?>