| Current Path : /home/maglabs/it/dev/tests/integration/framework/Magento/TestFramework/App/ |
| 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);
}
}