Loader\Csv::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        if (file_exists('nodes.csv') && static::$file_saved == 0) {
            unlink('nodes.csv');
        }
        if (file_exists('rels.csv') && static::$file_saved == 0) {
            unlink('rels.csv');
        }
    }