PatchBot/modules/Wordpress.php
2020-01-02 17:19:57 +01:00

14 lines
323 B
PHP

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