Issues (17)

src/FeatureSet/FeatureSetInterface.php (1 issue)

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
The doc comment array<string, callable()...tureSetMethodInterface> at position 4 could not be parsed: Expected '>' at position 4, but found 'callable'.
Loading history...
13
     */
14
    public function getMethods(): array;
15
}
16