Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace BrianHenryIE\Strauss\Config; |
| 4 | |
| 5 | interface MarkSymbolsForRenamingConfigInterface |
| 6 | { |
| 7 | public function getVendorDirectory(): string; |
| 8 | |
| 9 | public function getTargetDirectory(): string; |
| 10 | |
| 11 | /** |
| 12 | * @return string[] |
| 13 | */ |
| 14 | public function getExcludePackagesFromPrefixing(): array; |
| 15 | |
| 16 | /** |
| 17 | * @return string[] |
| 18 | */ |
| 19 | public function getExcludeFilePatternsFromPrefixing(): array; |
| 20 | |
| 21 | /** |
| 22 | * @return string[] |
| 23 | */ |
| 24 | public function getExcludeNamespacesFromPrefixing(): array; |
| 25 | |
| 26 | /** |
| 27 | * @return string[] |
| 28 | */ |
| 29 | public function getExcludePackagesFromCopy(): array; |
| 30 | |
| 31 | /** |
| 32 | * @return string[] |
| 33 | */ |
| 34 | public function getExcludeFilePatternsFromCopy(): array; |
| 35 | |
| 36 | /** |
| 37 | * @return string[] |
| 38 | */ |
| 39 | public function getExcludeNamespacesFromCopy(): array; |
| 40 | } |