You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please check the pull request - #35
I think this might be a simple fix.
It took us a while here to discover the issue on production. I think the setup might be quite common on production servers. Adding the check should save people time on troubleshooting.
From @doctrinebot on May 22, 2014 8:0
Jira issue originally created by user VictorSmirnov:
If module
Zend OPcache
is installed and configured not to save comments theAnnotationReader
class fails to parse data for entities.Output from
php -m
contains lineZend OPcache
.The module is configured with the following parameter
opcache.save_comments=0
.I would expect the
AnnotationReader
constructor to throw an exception. But it does not check if the module is loaded.In addition to the check for
opcache
modulewe might have a new check for the
Zend OPcache
moduleCopied from original issue: doctrine/common#551
The text was updated successfully, but these errors were encountered: