Skip to content

Commit

Permalink
improvement(compiler-passes): update variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
mikel00per committed Dec 1, 2023
1 parent 0d3f0cc commit 017bc81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Container
$settings['di']['container']['path'] = "$rootPath/" . ((string) getenv('PATH_CONTAINER_DEFINITIONS'));
$settings['di']['auto_wires']['path'] = "$rootPath/" . ((string) getenv('PATH_AUTO_WIRES'));
$settings['di']['compiled_passes']['path'] = "$rootPath/" . ((string) getenv('PATH_COMPILER_PASSES_DEFINITION'));
$settings['di']['compiler_passes']['path'] = "$rootPath/" . ((string) getenv('PATH_COMPILER_PASSES_DEFINITION'));
$settings['di']['auto_wires']['enabled'] = ((bool) getenv('ENABLE_AUTO_WIRES'));
$settings['di']['attributes']['enabled'] = ((bool) getenv('ENABLE_ATTRIBUTES'));
$settings['di']['cache']['container']['path'] = "$rootPath/" . ((string) getenv('PATH_COMPILED_CONTAINER'));
Expand Down
2 changes: 1 addition & 1 deletion tools/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<env name="MICROSERVICE_VERSION" value="v1"/>

<env name="PATH_CONTAINER_DEFINITIONS" value="config/container.php"/>
<env name="PATH_CONTAINER_ADDERS_DEFINITION" value="config/container_adders.php"/>
<env name="PATH_COMPILER_PASSES_DEFINITION" value="config/compiler_passes.php"/>
<env name="PATH_AUTO_WIRES" value="config/auto_wires.php"/>
<env name="ENABLE_AUTO_WIRES" value="1"/>
<env name="ENABLE_ATTRIBUTES" value="1"/>
Expand Down

0 comments on commit 017bc81

Please sign in to comment.