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

Fix: The database name is displayed when the TenantDatabaseAlreadyExistsException exception is thrown.

This commit is contained in:
Henrich 2020-09-22 22:22:12 +01:00
parent 894965d1a7
commit 424b69cb2b

View file

@ -18,8 +18,8 @@ class TenantDatabaseAlreadyExistsException extends TenantCannotBeCreatedExceptio
public function __construct(string $database)
{
parent::__construct();
$this->database = $database;
parent::__construct();
}
}