Skip to content

Commit b1ff2f1

Browse files
author
Franz Josef Kaiser
committed
Fix strict standards note, merged from 'issue-12' branch non ff.
2 parents d89f91d + 28e51b2 commit b1ff2f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wpstarter/src/Env.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class Env extends Dotenv
168168
/**
169169
* @inheritdoc
170170
*/
171-
public static function load($path)
171+
public static function load($path, $path = null)
172172
{
173173
if (! self::$loaded) {
174174
if (is_null(self::$all)) {
@@ -180,7 +180,7 @@ public static function load($path)
180180
self::$isString
181181
);
182182
}
183-
parent::load($path);
183+
parent::load($path, $path);
184184
self::$loaded = true;
185185
}
186186
}

0 commit comments

Comments
 (0)