Hello Phalcon Team,
I am new to phalcon, yet familiar with PHP webdevelopment, my question is, in this code:
$di = $di ?: new \Phalcon\Di\FactoryDefault();
If $di is Null or Empty, instantiate coming from all services that needs to be injected into the service container? And, is this similar to Dependency Injection with CLOSURES/ANONYMOUS FUNCTIONS?
Thanks very much.
CPA.IScoder