public function dispatch(){
.
.
.
wasFresh = false, e;
.
.
.
while !this->_finished {
.
.
.
if dependencyInjector->wasFreshInstance() === true {
let wasFresh = true;
}
.
.
.
if wasFresh === true {
if method_exists(handler, "initialize") {
handler->initialize();
}
}
.
.
.
}
}