johnykvsky /
dummygenerator
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types = 1); |
||
| 4 | |||
| 5 | namespace DummyGenerator\DefinitionPack; |
||
| 6 | |||
| 7 | use DummyGenerator\Definitions\Calculator\CalculatorInterface; |
||
| 8 | use DummyGenerator\Definitions\DefinitionInterface; |
||
| 9 | use DummyGenerator\Definitions\Extension\ExtensionInterface; |
||
| 10 | |||
| 11 | interface DefinitionPackInterface |
||
| 12 | { |
||
| 13 | /** @return array<string, class-string<ExtensionInterface>> */ |
||
|
0 ignored issues
–
show
Documentation
Bug
introduced
by
Loading history...
|
|||
| 14 | public function baseExtensions(): array; |
||
| 15 | |||
| 16 | /** @return array<string, class-string<ExtensionInterface>> */ |
||
|
0 ignored issues
–
show
|
|||
| 17 | public function defaultExtensions(): array; |
||
| 18 | |||
| 19 | /** @return array<string, class-string<ExtensionInterface>> */ |
||
|
0 ignored issues
–
show
|
|||
| 20 | public function complementaryExtensions(): array; |
||
| 21 | |||
| 22 | /** @return array<string, class-string<CalculatorInterface>> */ |
||
|
0 ignored issues
–
show
|
|||
| 23 | public function calculators(): array; |
||
| 24 | |||
| 25 | /** @return array<string, class-string<DefinitionInterface>> */ |
||
|
0 ignored issues
–
show
|
|||
| 26 | public function coreDefinitions(): array; |
||
| 27 | } |
||
| 28 |