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 LicenserConfigInterface
6{
7    public function isIncludeModifiedDate(): bool;
8
9    public function isIncludeAuthor(): bool;
10
11    /**
12     * The directory where Strauss copied the files to.
13     * absolute? relative?
14     */
15    public function getTargetDirectory(): string;
16
17    /**
18     * The directory where the source files are located.
19     *
20     * absolute? relative?
21     */
22    public function getVendorDirectory(): string;
23}