Skip to content

Commit

Permalink
fix(typo): missing semicolumn
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-etna committed Aug 13, 2021
1 parent 4725d4d commit 403e0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RabbitContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static function loadEnv()
{
$env_file = getenv('APPLICATION_ENV') . '.php';
foreach ([ "./app/Env/", "./app/env/" ] as $env_dir) {
$path = $env_dir . $env_file
$path = $env_dir . $env_file;
if (file_exists($path)) {
require_once($path);
}
Expand Down

0 comments on commit 403e0a6

Please sign in to comment.