Skip to content

Commit

Permalink
fix: remove APP_ENV from .env
Browse files Browse the repository at this point in the history
  • Loading branch information
nikophil committed Feb 2, 2025
1 parent 409a367 commit 541eeba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ MONGO_URL="mongodb://127.0.0.1:27018/dbName?compressors=disabled&gssapiServi
USE_DAMA_DOCTRINE_TEST_BUNDLE="0"
USE_FOUNDRY_PHPUNIT_EXTENSION="0"
PHPUNIT_VERSION="9" # allowed values: 9, 10, 11
APP_ENV=test
2 changes: 1 addition & 1 deletion tests/Fixture/TestKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ protected function configureContainer(ContainerBuilder $c, LoaderInterface $load
{
parent::configureContainer($c, $loader);

if ('test' !== $this->getEnvironment()) {
if ('dev' !== $this->getEnvironment()) {
$loader->load(\sprintf('%s/config/%s.yaml', __DIR__, $this->getEnvironment()));
}

Expand Down

0 comments on commit 541eeba

Please sign in to comment.