| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function save( $file_path ) { |
||
| 40 | $handle = fopen( $file_path, 'w+' ); |
||
| 41 | foreach ( $this->items as $item ) { |
||
| 42 | fputcsv( $handle, $item->to_csv_array() ); |
||
| 43 | } |
||
| 44 | rewind( $handle ); |
||
| 45 | $contents = stream_get_contents( $handle ); |
||
| 46 | fclose( $handle ); |
||
| 47 | return $contents; |
||
| 48 | } |
||
| 49 | } |
||
| 50 |