I found at document that some services will be automatically injected when we call:
<?php $di = new Phalcon\DI\FactoryDefault();
(https://docs.phalcon.io/en/latest/reference/di.html#factory-default-di)
But what will be inject to constructors/calls/properties of these services?
I can directly use $this->dispatcher/$this->event in controller, because they have been injected into Controller by Phalcon in a property way.
Is there any document can help me to find out all the injected things?