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 MarkFilesExcludedFromChangesConfigInterface |
| 6 | { |
| 7 | /** |
| 8 | * @return string[] |
| 9 | */ |
| 10 | public function getExcludeFilesFromUpdatePackages(): array; |
| 11 | |
| 12 | /** |
| 13 | * @return string[] |
| 14 | */ |
| 15 | public function getExcludeFileFromUpdateNamespaces(): array; |
| 16 | |
| 17 | /** |
| 18 | * @return string[] |
| 19 | */ |
| 20 | public function getExcludeFilesFromUpdateFilePatterns(): array; |
| 21 | } |