Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.032 |
Changes | 0 |
1 | <?php |
||
8 | 1 | public static function write(\CsvParser\Parser $parser, \CsvParser\Csv $csv, $filename='') |
|
9 | { |
||
10 | 1 | if ( ! $filename) { |
|
11 | throw new Exception('Please provide a file name to write to'); |
||
12 | } |
||
13 | 1 | $file = $parser->toString($csv); |
|
14 | 1 | return file_put_contents($filename, $file); |
|
15 | } |
||
16 | } |
||
17 |