| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace Usox\HyperSonic\FeatureSet; |
||
| 6 | |||
| 7 | interface FeatureSetInterface |
||
| 8 | { |
||
| 9 | public function getVersion(): string; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @return array<string, callable(): FeatureSetMethodInterface> |
||
|
0 ignored issues
–
show
Documentation
Bug
introduced
by
Loading history...
|
|||
| 13 | */ |
||
| 14 | public function getMethods(): array; |
||
| 15 | } |
||
| 16 |