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 AliasesConfigInterace
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    public function isDryRun(): bool;
22
23    public function isCreateAliases(): bool;
24}