From 7080f8bc2ab024b0b6fdd6d7f5cc2acb4ec56c3a Mon Sep 17 00:00:00 2001
From: Shish <shish@shishnet.org>
Date: Mon, 27 Jan 2020 19:31:38 +0000
Subject: [PATCH] fix InstallerException

---
 core/exceptions.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/exceptions.php b/core/exceptions.php
index 1c6c8ac7..b7e8fded 100644
--- a/core/exceptions.php
+++ b/core/exceptions.php
@@ -34,7 +34,7 @@ class InstallerException extends RuntimeException
 
     public function __construct(string $title, string $body, int $code)
     {
-        parent::construct($title);
+        parent::__construct($title);
         $this->title = $title;
         $this->body = $body;
         $this->code = $code;