Passed
Push — master ( 6998a3...224daf )
by Daniel
02:08
created

CsvSpy   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 20
rs 10
c 0
b 0
f 0
wmc 4
1
<?php declare(strict_types=1);
2
3
/**
4
 * This file is part of the Csv-Machine package.
5
 *
6
 * (c) Dan McAdams <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace RoadBunch\Csv\Tests\Csv;
13
14
use RoadBunch\Csv\Csv;
15
16
/**
17
 * Class CsvSpy
18
 *
19
 * @author  Dan McAdams
20
 * @package RoadBunch\Csv\Tests\Csv
21
 */
22
class CsvSpy extends Csv
23
{
24
    public function getDelimiter()
25
    {
26
        return $this->delimiter;
27
    }
28
29
    public function getEnclosure()
30
    {
31
        return $this->enclosure;
32
    }
33
34
    public function getNewline()
35
    {
36
        return $this->newline;
37
    }
38
39
    public function getEscapeCharacter()
40
    {
41
        return $this->escape;
42
    }
43
}
44