Issues (17)

FeatureSet/V1161/FeatureSetFactoryInterface.php (1 issue)

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