mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 06:44:04 +00:00
update spatie/ignition to support L9 (#930)
This commit is contained in:
parent
3605252d85
commit
3542b3f028
2 changed files with 4 additions and 5 deletions
|
|
@ -18,7 +18,7 @@
|
|||
"php": "^8.1",
|
||||
"ext-json": "*",
|
||||
"illuminate/support": "^9.0",
|
||||
"facade/ignition-contracts": "^1.0",
|
||||
"spatie/ignition": "^1.4",
|
||||
"ramsey/uuid": "^4.0",
|
||||
"stancl/jobpipeline": "^1.0",
|
||||
"stancl/virtualcolumn": "^1.0"
|
||||
|
|
|
|||
|
|
@ -5,9 +5,8 @@ declare(strict_types=1);
|
|||
namespace Stancl\Tenancy\Contracts;
|
||||
|
||||
use Exception;
|
||||
use Facade\IgnitionContracts\BaseSolution;
|
||||
use Facade\IgnitionContracts\ProvidesSolution;
|
||||
use Facade\IgnitionContracts\Solution;
|
||||
use Spatie\Ignition\Contracts\BaseSolution;
|
||||
use Spatie\Ignition\Contracts\ProvidesSolution;
|
||||
|
||||
abstract class TenantCouldNotBeIdentifiedException extends Exception implements ProvidesSolution
|
||||
{
|
||||
|
|
@ -42,7 +41,7 @@ abstract class TenantCouldNotBeIdentifiedException extends Exception implements
|
|||
}
|
||||
|
||||
/** Get the Ignition description. */
|
||||
public function getSolution(): Solution
|
||||
public function getSolution(): BaseSolution
|
||||
{
|
||||
return BaseSolution::create($this->solutionTitle)
|
||||
->setSolutionDescription($this->solutionDescription)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue