1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 09:34:05 +00:00

Add exceptions missing parent constructor call

This commit is contained in:
antonkomarev 2019-09-26 04:28:02 +03:00
parent a166de2ef6
commit 64cd90eac9
2 changed files with 2 additions and 2 deletions

View file

@ -8,6 +8,6 @@ class DatabaseManagerNotRegisteredException extends \Exception
{
public function __construct($driver)
{
$this->message = "Database manager for driver $driver is not registered.";
parent::__construct("Database manager for driver $driver is not registered.");
}
}