From ca84e9416d4d3ff4514a9ee58efafcef1cb01fc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 14 Feb 2024 09:57:09 +0100 Subject: [PATCH] update recipes symfony/phpunit-bridge --- symfony.lock | 2 +- tests/bootstrap.php | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/symfony.lock b/symfony.lock index ed652da..572bb12 100644 --- a/symfony.lock +++ b/symfony.lock @@ -623,7 +623,7 @@ "repo": "github.com/symfony/recipes", "branch": "main", "version": "5.3", - "ref": "221b9cc0a623f567e83ccd61a8ac82a9a91e2b5b" + "ref": "07ce01a897311647520b43d4ddddad9537b99ba6" }, "files": [ ".env.test", diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 3181151..47a5855 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -4,9 +4,7 @@ use Symfony\Component\Dotenv\Dotenv; require dirname(__DIR__).'/vendor/autoload.php'; -if (file_exists(dirname(__DIR__).'/config/bootstrap.php')) { - require dirname(__DIR__).'/config/bootstrap.php'; -} elseif (method_exists(Dotenv::class, 'bootEnv')) { +if (method_exists(Dotenv::class, 'bootEnv')) { (new Dotenv())->bootEnv(dirname(__DIR__).'/.env'); }