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\Composer\Extra; |
4 | |
5 | interface ReplaceConfigInterface |
6 | { |
7 | |
8 | /** |
9 | * @return string[] |
10 | */ |
11 | public function getExcludeFilePatternsFromPrefixing(): array; |
12 | |
13 | /** |
14 | * @return array<string,string> |
15 | */ |
16 | public function getNamespaceReplacementPatterns(): array; |
17 | |
18 | public function isIncludeModifiedDate(): bool; |
19 | |
20 | public function isIncludeAuthor(): bool; |
21 | |
22 | public function getUpdateCallSites(): ?array; |
23 | } |