fix InstallerException

This commit is contained in:
Shish 2020-01-27 19:31:38 +00:00
parent 7e43e2e304
commit 7080f8bc2a

View file

@ -34,7 +34,7 @@ class InstallerException extends RuntimeException
public function __construct(string $title, string $body, int $code) public function __construct(string $title, string $body, int $code)
{ {
parent::construct($title); parent::__construct($title);
$this->title = $title; $this->title = $title;
$this->body = $body; $this->body = $body;
$this->code = $code; $this->code = $code;