This commit is contained in:
as2252258@163.com
2021-05-03 03:50:08 +08:00
parent 8137b24865
commit 6c75b19844
+1 -1
View File
@@ -185,7 +185,7 @@ class Container extends BaseObject
}
foreach ($this->_property[$reflect->getName()] as $property => $inject) {
/** @var Inject $inject */
$inject->execute([$object, $property]);
$inject->execute($object, $property);
}
return $object;
}