File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,14 @@ public static function load(array|string $paramStorage): array
51
51
foreach ($ loaderMappings as $ method => $ pattern ) {
52
52
if (preg_match ($ pattern , $ paramStorage )) {
53
53
try {
54
- return self ::$ method ($ paramStorage );
54
+ return self ::$ method ($ paramsFile );
55
55
} catch (Exception $ e ) {
56
- throw new ConfigurationException ("Failed loading params from {$ paramStorage }\n" . $ e ->getMessage ());
56
+ throw new ConfigurationException ("Failed loading params from {$ paramsFile }\n" . $ e ->getMessage ());
57
57
}
58
58
}
59
59
}
60
60
61
- throw new ConfigurationException ("Params can't be loaded from ` {$ paramStorage }`. " );
61
+ throw new ConfigurationException ("Params can't be loaded from ` {$ paramFile }`. " );
62
62
}
63
63
64
64
/**
You can’t perform that action at this time.
0 commit comments