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

Fix: The database name is displayed when the TenantDatabaseAlreadyExistsException exception is thrown. (#499)

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

* Fix the code style

Co-authored-by: Henrich <Ekoumelong>
This commit is contained in:
GENL 2020-09-23 18:47:35 +01:00 committed by GitHub
parent 894965d1a7
commit 411d486282
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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