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 CleanupConfigInterface |
| 6 | { |
| 7 | public function getVendorDirectory(): string; |
| 8 | |
| 9 | public function isDeleteVendorFiles(): bool; |
| 10 | |
| 11 | public function isDeleteVendorPackages(): bool; |
| 12 | |
| 13 | public function getTargetDirectory(): string; |
| 14 | |
| 15 | public function isDryRun(): bool; |
| 16 | } |