PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
stancl
/
tenancy
/
src
/
Exceptions
/
Editing: NoConnectionSetException.php
<?php declare(strict_types=1); namespace Stancl\Tenancy\Exceptions; use Exception; class NoConnectionSetException extends Exception { public function __construct($manager) { parent::__construct("No connection was set on this $manager instance."); } }
SAVE
CANCEL