This commit is contained in:
as2252258@163.com
2021-08-09 02:13:54 +08:00
parent a616d27c72
commit 7d9b45446d
+3 -1
View File
@@ -46,7 +46,9 @@ use Snowflake\Snowflake;
if ($method->isPrivate() || $method->isProtected()) {
$this->setter($class, $method, $injectValue);
} else {
var_dump($injectValue);
if (is_string($injectValue)){
var_dump($injectValue);
}
$class->{$method->getName()} = $injectValue;
}
return true;