PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Exceptions
/
Editing: TenancyNotInitializedException.php
<?php declare(strict_types=1); namespace Stancl\Tenancy\Exceptions; use Exception; class TenancyNotInitializedException extends Exception { public function __construct($message = '') { parent::__construct($message ?: 'Tenancy is not initialized.'); } }
SAVE
CANCEL