Add Memtest86+
This commit is contained in:
parent
84f10552e3
commit
80728298cb
1 changed files with 14 additions and 0 deletions
14
modules/Memtest.php
Normal file
14
modules/Memtest.php
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class Memtest extends PatchBase {
|
||||||
|
function __construct() {
|
||||||
|
parent::__construct('Samuel Demeulemeester', 'Memtest86+', 'https://www.memtest.org/');
|
||||||
|
}
|
||||||
|
function check() : bool {
|
||||||
|
if ($this->fetch('https://www.memtest.org/'))
|
||||||
|
return $this->parse('/>LATEST\s+VERSION : ([\d\.]+[a-z]?)</');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue