-
-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Helpers are not loaded #44
Comments
I can't tell without the access on the whole project, and I don't want it. Run PHPStan in debug mode with no parallel processing and try to figure it out. |
I noticed that it is correctly loading the helpers of Laminas but the ones I did are not being loaded for phpstan I'm following the Laminas documentation https://docs.laminas.dev/laminas-view/helpers/advanced-usage/ Does anyone have any tips? |
I had a similar problem. I had code that had something like this in the config (which works fine in production): [
'factories' => [
'SchemeInputManager' => SchemeInputManagerFactory::class,
],
]; Using the class string in [
'aliases' => [
'SchemeInputManager' => SchemeInputManager::class,
],
'factories' => [
SchemeInputManager::class => SchemeInputManagerFactory::class,
],
]; |
I don't know why but it's not loading some helpers.
Is there something I should configure?
.neon
service-manager.php
The text was updated successfully, but these errors were encountered: