PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Contracts
/
Editing: TenantCannotBeCreatedException.php
<?php declare(strict_types=1); namespace Stancl\Tenancy\Contracts; abstract class TenantCannotBeCreatedException extends \Exception { abstract public function reason(): string; protected $message; public function __construct() { $this->message = 'Tenant cannot be created. Reason: ' . $this->reason(); } }
SAVE
CANCEL