| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function __construct($input) |
||
| 31 | { |
||
| 32 | $this->initHandle($input, 'wb'); |
||
| 33 | |||
| 34 | $metaData = stream_get_meta_data($this->handle); |
||
| 35 | if (!is_writable($metaData['uri'])) { |
||
| 36 | throw new YaEtlException('CsvLoader : destination cannot be opened in write mode'); |
||
| 37 | } |
||
| 38 | |||
| 39 | parent::__construct(); |
||
| 40 | } |
||
| 42 |