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