Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | namespace Apie\Common\Interfaces; |
| 3 | |
| 4 | use Apie\Core\Actions\ActionInterface; |
| 5 | |
| 6 | /** |
| 7 | * Interface for route definitions to tell they are linked to an Apie action. |
| 8 | */ |
| 9 | interface HasActionDefinition |
| 10 | { |
| 11 | /** |
| 12 | * @return class-string<ActionInterface> |
| 13 | */ |
| 14 | public function getAction(): string; |
| 15 | } |