Using Doctrine on a project. If I execute the following code, syslog is updated. But if I execute it through PhpED debugger, it is not. Note that the file in question is a proxy file. What can I do to still be able to debug it? Thanks
// This file is located in /var/www/doctrinetest/src
$collection=$this->account->getUsers();
foreach($collection as $entity) {
//$entity shows as file: /var/www/doctrinetest/var/doctrine/proxy/__CG__MyNsMyAppDomainEntityUser.php
$id=$entity->getId();
syslog(LOG_INFO, 'never gets here'); //Breakpoint included on this line
}
syslog(LOG_INFO, 'never gets here'); //Breakpoint included on this line |