Completed
Pull Request — master (#178)
by ignace nyamagana
12:35
created

Reader::fetchColumn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 18
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 11
CRAP Score 1

Importance

Changes 10
Bugs 0 Features 0
Metric Value
c 10
b 0
f 0
dl 0
loc 18
ccs 11
cts 11
cp 1
rs 9.4285
cc 1
eloc 10
nc 1
nop 2
crap 1
1
<?php
2
/**
3
* This file is part of the League.csv library
4
*
5
* @license http://opensource.org/licenses/MIT
6
* @link https://github.com/thephpleague/csv/
7
* @version 8.1.1
8
* @package League.csv
9
*
10
* For the full copyright and license information, please view the LICENSE
11
* file that was distributed with this source code.
12
*/
13
namespace League\Csv;
14
15
/**
16
 * A class to manage extracting and filtering a CSV
17
 *
18
 * @package League.csv
19
 * @since  3.0.0
20
 *
21
 */
22
class Reader extends AbstractCsv
23
{
24
    /**
25
     * @inheritdoc
26
     */
27
    protected $stream_filter_mode = STREAM_FILTER_READ;
28
}
29