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