mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 18:44:03 +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",
|
"php": "^8.1",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"illuminate/support": "^9.0",
|
"illuminate/support": "^9.0",
|
||||||
"facade/ignition-contracts": "^1.0",
|
"spatie/ignition": "^1.4",
|
||||||
"ramsey/uuid": "^4.0",
|
"ramsey/uuid": "^4.0",
|
||||||
"stancl/jobpipeline": "^1.0",
|
"stancl/jobpipeline": "^1.0",
|
||||||
"stancl/virtualcolumn": "^1.0"
|
"stancl/virtualcolumn": "^1.0"
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,8 @@ declare(strict_types=1);
|
||||||
namespace Stancl\Tenancy\Contracts;
|
namespace Stancl\Tenancy\Contracts;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Facade\IgnitionContracts\BaseSolution;
|
use Spatie\Ignition\Contracts\BaseSolution;
|
||||||
use Facade\IgnitionContracts\ProvidesSolution;
|
use Spatie\Ignition\Contracts\ProvidesSolution;
|
||||||
use Facade\IgnitionContracts\Solution;
|
|
||||||
|
|
||||||
abstract class TenantCouldNotBeIdentifiedException extends Exception implements ProvidesSolution
|
abstract class TenantCouldNotBeIdentifiedException extends Exception implements ProvidesSolution
|
||||||
{
|
{
|
||||||
|
|
@ -42,7 +41,7 @@ abstract class TenantCouldNotBeIdentifiedException extends Exception implements
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get the Ignition description. */
|
/** Get the Ignition description. */
|
||||||
public function getSolution(): Solution
|
public function getSolution(): BaseSolution
|
||||||
{
|
{
|
||||||
return BaseSolution::create($this->solutionTitle)
|
return BaseSolution::create($this->solutionTitle)
|
||||||
->setSolutionDescription($this->solutionDescription)
|
->setSolutionDescription($this->solutionDescription)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue