Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/app/Firebear/ImportExport/Model/Filesystem/
Upload File :
Current File : /home/dev2.destoffenstraat.com/app/Firebear/ImportExport/Model/Filesystem/DriverPool.php

<?php
/**
 * @copyright: Copyright © 2017 Firebear Studio. All rights reserved.
 * @author   : Firebear Studio <fbeardev@gmail.com>
 */

namespace Firebear\ImportExport\Model\Filesystem;

use Firebear\ImportExport\Model\Filesystem\Driver\Http;

/**
 * A pool of stream wrappers
 */
class DriverPool extends \Magento\Framework\Filesystem\DriverPool
{
    /**
     * DriverPool constructor.
     * @param array $extraTypes
     */
    public function __construct($extraTypes = [])
    {
        $this->types[self::HTTP] = Http::class;
        parent::__construct($extraTypes);
    }
}