Skip to content

Commit a2a9f2f

Browse files
committed
Fixed #46
1 parent fe10d06 commit a2a9f2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

craft

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ require_once CRAFT_VENDOR_PATH.'/autoload.php';
1313

1414
// Load dotenv?
1515
if (class_exists('Dotenv\Dotenv') && file_exists(CRAFT_BASE_PATH.'/.env')) {
16-
DotEnv\DotEnv::create(CRAFT_BASE_PATH)->load();
16+
Dotenv\Dotenv::create(CRAFT_BASE_PATH)->load();
1717
}
1818

1919
// Load and run Craft

web/index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
// Load dotenv?
1414
if (class_exists('Dotenv\Dotenv') && file_exists(CRAFT_BASE_PATH.'/.env')) {
15-
DotEnv\DotEnv::create(CRAFT_BASE_PATH)->load();
15+
Dotenv\Dotenv::create(CRAFT_BASE_PATH)->load();
1616
}
1717

1818
// Load and run Craft

0 commit comments

Comments
 (0)