yvoyer /
php-state
| 1 | <?php declare(strict_types=1); |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 2 | /** |
||
|
0 ignored issues
–
show
|
|||
| 3 | * This file is part of the php-state project. |
||
| 4 | * |
||
| 5 | * (c) Yannick Voyer <[email protected]> (http://github.com/yvoyer) |
||
| 6 | */ |
||
|
0 ignored issues
–
show
|
|||
| 7 | |||
| 8 | namespace Star\Component\State; |
||
| 9 | |||
| 10 | interface StateTransition |
||
|
0 ignored issues
–
show
|
|||
| 11 | { |
||
|
0 ignored issues
–
show
|
|||
| 12 | /** |
||
|
0 ignored issues
–
show
|
|||
| 13 | * @param RegistryBuilder $registry |
||
|
0 ignored issues
–
show
|
|||
| 14 | */ |
||
|
0 ignored issues
–
show
|
|||
| 15 | public function onRegister(RegistryBuilder $registry): void; |
||
|
0 ignored issues
–
show
|
|||
| 16 | |||
| 17 | /** |
||
|
0 ignored issues
–
show
|
|||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function getName(): string; |
||
|
0 ignored issues
–
show
|
|||
| 21 | |||
| 22 | /** |
||
|
0 ignored issues
–
show
|
|||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function getDestinationState(): string; |
||
|
0 ignored issues
–
show
|
|||
| 26 | } |
||
|
0 ignored issues
–
show
|
|||
| 27 |