Initial commit
This commit is contained in:
7
vendor/spatie/error-solutions/legacy/ignition/Contracts/BaseSolution.php
vendored
Normal file
7
vendor/spatie/error-solutions/legacy/ignition/Contracts/BaseSolution.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\Ignition\Contracts;
|
||||
|
||||
class BaseSolution extends \Spatie\ErrorSolutions\Contracts\BaseSolution implements Solution
|
||||
{
|
||||
}
|
||||
7
vendor/spatie/error-solutions/legacy/ignition/Contracts/HasSolutionsForThrowable.php
vendored
Normal file
7
vendor/spatie/error-solutions/legacy/ignition/Contracts/HasSolutionsForThrowable.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\Ignition\Contracts;
|
||||
|
||||
interface HasSolutionsForThrowable extends \Spatie\ErrorSolutions\Contracts\HasSolutionsForThrowable
|
||||
{
|
||||
}
|
||||
7
vendor/spatie/error-solutions/legacy/ignition/Contracts/ProvidesSolution.php
vendored
Normal file
7
vendor/spatie/error-solutions/legacy/ignition/Contracts/ProvidesSolution.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\Ignition\Contracts;
|
||||
|
||||
interface ProvidesSolution extends \Spatie\ErrorSolutions\Contracts\ProvidesSolution
|
||||
{
|
||||
}
|
||||
16
vendor/spatie/error-solutions/legacy/ignition/Contracts/RunnableSolution.php
vendored
Normal file
16
vendor/spatie/error-solutions/legacy/ignition/Contracts/RunnableSolution.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\Ignition\Contracts;
|
||||
|
||||
interface RunnableSolution extends Solution
|
||||
{
|
||||
public function getSolutionActionDescription(): string;
|
||||
|
||||
public function getRunButtonText(): string;
|
||||
|
||||
/** @param array<string, mixed> $parameters */
|
||||
public function run(array $parameters = []): void;
|
||||
|
||||
/** @return array<string, mixed> */
|
||||
public function getRunParameters(): array;
|
||||
}
|
||||
7
vendor/spatie/error-solutions/legacy/ignition/Contracts/Solution.php
vendored
Normal file
7
vendor/spatie/error-solutions/legacy/ignition/Contracts/Solution.php
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\Ignition\Contracts;
|
||||
|
||||
interface Solution extends \Spatie\ErrorSolutions\Contracts\Solution
|
||||
{
|
||||
}
|
||||
8
vendor/spatie/error-solutions/legacy/ignition/Contracts/SolutionProviderRepository.php
vendored
Normal file
8
vendor/spatie/error-solutions/legacy/ignition/Contracts/SolutionProviderRepository.php
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
namespace Spatie\Ignition\Contracts;
|
||||
|
||||
interface SolutionProviderRepository extends \Spatie\ErrorSolutions\Contracts\SolutionProviderRepository
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user