PatchBot/modules/APlanX.php
2024-11-16 06:02:52 +01:00

14 lines
339 B
PHP

<?php
class APlanX extends PatchBase {
function __construct() {
parent::__construct('braintool', 'A-Plan X', 'https://www.braintool.com/patches-x/');
}
function check() : bool {
if ($this->fetch('https://www.braintool.com/patch-a-plan-x-historie/'))
return $this->parse('/<strong>Release ([\d\.]+) /');
return false;
}
}
?>