Added dev php config and removed .env dependencies

This commit is contained in:
Alejandro Celaya
2019-12-17 21:20:24 +01:00
parent 9f2ede0b84
commit 0152f6fa1a
13 changed files with 32 additions and 47 deletions

View File

@@ -7,14 +7,6 @@ namespace Shlinkio\Shlink\TestUtils;
use Doctrine\ORM\EntityManager;
use Psr\Container\ContainerInterface;
use function file_exists;
use function touch;
// Create an empty .env file
if (! file_exists('.env')) {
touch('.env');
}
/** @var ContainerInterface $container */
$container = require __DIR__ . '/../container.php';
$testHelper = $container->get(Helper\TestHelper::class);