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 AutoloadConfigInterace
6{
7
8    /**
9     * The directory where the source files are located.
10     *
11     * absolute? relative?
12     */
13    public function getVendorDirectory(): string;
14
15    /**
16     * The directory where Strauss copied the files to.
17     * absolute? relative?
18     */
19    public function getTargetDirectory(): string;
20
21    /**
22     * The directory containing `composer.json`.
23     */
24    public function getProjectDirectory(): string;
25
26    public function isClassmapOutput(): bool;
27
28    public function isDryRun(): bool;
29}