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