framework
framework copied to clipboard
[DI] Try make create fuction can get params from resolve()
$app->resolve(Class, [...args]);
$app->bind(Class, create(function (/* get args here */) {
...
}))
bind() will wrap ObjectDefinition into CallbackDefinition and StoreDefinition, so we must implement this feature after #875