PatchBot/modules/Scilab.php
2025-10-16 17:35:33 +02:00

14 lines
313 B
PHP

<?php
class Scilab extends PatchBase {
function __construct() {
parent::__construct('ESI Group', 'Scilab', 'https://www.scilab.org/download');
}
function check() : bool {
if ($this->fetch('https://www.scilab.org/download'))
return $this->parse('/<h1>Scilab ([\d\.]+)<\/h1>/');
return false;
}
}
?>