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 FileEnumeratorConfig
6{
7
8    public function getProjectAbsolutePath(): string;
9    public function getAbsoluteVendorDirectory(): string;
10
11    public function getAbsoluteTargetDirectory(): string;
12
13    public function getRelativeTargetDirectory(): string;
14
15    /** @return string[] */
16    public function getExcludeNamespacesFromCopy(): array;
17
18    /** @return string[] */
19    public function getExcludePackagesFromCopy(): array;
20
21    /** @return string[] */
22    public function getExcludeFilePatternsFromCopy(): array;
23}