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 FileCopyScannerConfigInterface |
| 6 | { |
| 7 | |
| 8 | public function getAbsoluteVendorDirectory(): string; |
| 9 | |
| 10 | public function isTargetDirectoryVendor(): bool; |
| 11 | |
| 12 | /** |
| 13 | * @return string[] |
| 14 | */ |
| 15 | public function getExcludePackagesFromCopy(): array; |
| 16 | |
| 17 | /** |
| 18 | * @return string[] |
| 19 | */ |
| 20 | public function getExcludeNamespacesFromCopy(): array; |
| 21 | |
| 22 | /** |
| 23 | * @return string[] |
| 24 | */ |
| 25 | public function getExcludeFilePatternsFromCopy(): array; |
| 26 | |
| 27 | public function isDeleteVendorFiles(): bool; |
| 28 | |
| 29 | public function getAbsoluteTargetDirectory(): string; |
| 30 | } |