We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given the following class:
<?php class AppKernel { }
which is whitelisted (hence should be prefixed), the prefixed code won't change i.e. the namespace with the prefix added is missing:
<?php namespace PhpScoperPefix; // <- this is missing class AppKernel { }
The text was updated successfully, but these errors were encountered:
Add missing namespace (#138)
674e24d
When prefixing classes from the global namespace, the namespace statement may be missing. Closes #135.
No branches or pull requests
Given the following class:
which is whitelisted (hence should be prefixed), the prefixed code won't change i.e. the namespace with the prefix added is missing:
The text was updated successfully, but these errors were encountered: