mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 06:44:02 +00:00
* Add the option to set values & db name during tenant creation * Apply fixes from StyleCI * Add tests * Apply fixes from StyleCI * Rewrite conditional for clarity
8 lines
171 B
PHP
8 lines
171 B
PHP
<?php
|
|
|
|
namespace Stancl\Tenancy\Exceptions;
|
|
|
|
class CannotChangeUuidOrDomainException extends \Exception
|
|
{
|
|
protected $message = 'Uuid and domain cannot be changed.';
|
|
}
|