Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/File/
Upload File :
Current File : //home/rtorresani/www/setup/src/Magento/Setup/Module/I18n/Dictionary/Loader/File/Csv.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Setup\Module\I18n\Dictionary\Loader\File;

use Magento\Setup\Module\I18n\Dictionary;

/**
 *  Dictionary loader from csv
 */
class Csv extends AbstractFile
{
    /**
     * {@inheritdoc}
     */
    protected function _readFile()
    {
        return fgetcsv($this->_fileHandler, null, ',', '"');
    }
}