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

WriterSpy   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 2
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\Writer;
15
16
/**
17
 * Class WriterSpy
18
 *
19
 * @author  Dan McAdams
20
 * @package RoadBunch\Csv\Tests\Csv
21
 */
22
class WriterSpy extends Writer
23
{
24
    public function getHeader()
25
    {
26
        return $this->header;
27
    }
28
29
    public function getRows()
30
    {
31
        return $this->rows;
32
    }
33
}
34