15 lines
355 B
PHP
15 lines
355 B
PHP
<?php
|
|
|
|
class WhatsApp extends PatchBase {
|
|
function __construct() {
|
|
parent::__construct('WhatsApp LLC', 'WhatsApp', 'https://www.whatsapp.com/android');
|
|
$this->patch->setBranch('Android');
|
|
}
|
|
function check() : bool {
|
|
if ($this->fetch('https://www.whatsapp.com/android'))
|
|
return $this->parse('/\(Version ([\d\.]+)\)/');
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|