Your IP : 216.73.216.38


Current Path : /home/maglabs/it/dev/tests/integration/framework/Magento/TestFramework/App/
Upload File :
Current File : /home/maglabs/it/dev/tests/integration/framework/Magento/TestFramework/App/EnvironmentFactory.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

namespace Magento\TestFramework\App;

use Magento\TestFramework\App\ObjectManager\Environment\Developer;

class EnvironmentFactory extends \Magento\Framework\App\EnvironmentFactory
{
    public function createEnvironment()
    {
        return new Developer($this);
    }
}

?>