This repository was archived by the owner on Jan 29, 2020. It is now read-only.
This repository was archived by the owner on Jan 29, 2020. It is now read-only.
ClassScanner::getInterfaces() don't work correctly with Interface #90
Closed
Description
short example
Interface A { }
Interface B { }
Interface C extends A,B { }
$fileScanner = .....; // a file which contains Interface C
$clazz = $fileScanner->getClasses()[0]; //which is C
$clazz->getInterfaces(); // this line don't work correctly. It should return A and B
best regards
Siwapun Siwaporn