Skip to content

Commit

Permalink
Legacy RunnableSolution should continue to extend legacy Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanmcclean committed Jul 9, 2024
1 parent 42c10e4 commit 31fefe6
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion legacy/ignition/Contracts/RunnableSolution.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

namespace Spatie\Ignition\Contracts;

interface RunnableSolution extends \Spatie\ErrorSolutions\Contracts\RunnableSolution
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;
}

0 comments on commit 31fefe6

Please sign in to comment.