-
Notifications
You must be signed in to change notification settings - Fork 5
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
ParserClass do not resolve parent classes without use statements #38
Comments
At master branch 32d5b78 |
Please wait and do not merge request! |
Situation became even worst, please look at the class Pimcore\Model\Listing\Dao\AbstractDao: <?php
namespace Pimcore\Model\Listing\Dao;
use Pimcore\Model;
abstract class AbstractDao extends Model\Dao\AbstractDao
{ There So, I see only single robust solution to resolve all such cases - use reflection instead of parsing... |
Good find, i agree, this is probably the best way to go 👍 |
Meantime that may be slow sometimes... |
I think that's an acceptable trade off, since this is not something that needs to be super fast but accurate. Impact should be negligible 😁 |
And I have got error:
Problem happened on class declaration starting from:
Class
AbstractClassNameLoader
indeed did not listed in theuse
statements, but that present in the same namespace and directory.The text was updated successfully, but these errors were encountered: