[更新]修正We快速加载器取第一参数

This commit is contained in:
邹景立 2018-05-27 22:42:25 +08:00
parent fd179277a6
commit 34b23677e8

2
We.php
View File

@ -100,7 +100,7 @@ class We
$class = 'WePay\\' . substr($name, 5);
}
if (!empty($class) && class_exists($class)) {
$option = array_pop($arguments);
$option = array_shift($arguments);
$config = is_array($option) ? $option : self::$config->get();
return new $class($config);
}