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
3namespace BrianHenryIE\Strauss\Config;
4
5interface 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
17    /**
18     * The directory containing `composer.json`.
19     */
20    public function getProjectDirectory(): string;
21}