yvoyer /
php-state
| 1 | <?php declare(strict_types=1); |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 2 | |||
| 3 | namespace Star\Component\State; |
||
| 4 | |||
| 5 | interface RegistryBuilder |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @param string $transition |
||
| 9 | * @param string $stateName |
||
| 10 | * @param string[] $attributes |
||
| 11 | */ |
||
| 12 | public function registerStartingState(string $transition, string $stateName, array $attributes): void; |
||
|
0 ignored issues
–
show
|
|||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $transition |
||
| 16 | * @param string $stateName |
||
| 17 | * @param string[] $attributes |
||
| 18 | */ |
||
| 19 | public function registerDestinationState(string $transition, string $stateName, array $attributes): void; |
||
|
0 ignored issues
–
show
|
|||
| 20 | } |
||
| 21 |