Q1: is_callable always return true about the Model::notFoundMethod or $model->notFoundMethod, and the method_exists will return false. which behavior about the zephir_method_exists
?
Q2: EventsManager's attach method only accepts the object|callable type arg as handler, how can I implement the lazy-handler? for sometimes the event handler class is heavy to load, I want make it load and instancing as demand by automaticly. such like $eventsManager->attach('user','\Listeners\UserListener'); or $eventsManager->attach('user','userListener'); the 'userListener' is a service registered in DI