Missing underscore caused magic method to appear as non-existant (obviously)

Fixes #3
This commit is contained in:
Miguel Nogueira 2018-06-08 15:04:27 +00:00
parent 603245498c
commit 536b9ac0c3
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ class Customer extends Application
public function __construct()
{
parent::_construct();
parent::__construct();
$this->Virtualmin = new VirtualminHandler();
}