mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
Merge pull request #3 from philix/ifacedeps
Fix phutil_analyzer bug on interface dependency creation
This commit is contained in:
commit
c5198d8bfe
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ foreach (Futures($futures) as $file => $future) {
|
||||||
$extends = $interface->getChildByIndex(2);
|
$extends = $interface->getChildByIndex(2);
|
||||||
foreach ($extends->selectDescendantsOfType('n_CLASS_NAME') as $parent) {
|
foreach ($extends->selectDescendantsOfType('n_CLASS_NAME') as $parent) {
|
||||||
$requirements->addInterfaceDependency(
|
$requirements->addInterfaceDependency(
|
||||||
$class_name->getConcreteString(),
|
$interface_name->getConcreteString(),
|
||||||
$parent,
|
$parent,
|
||||||
$parent->getConcreteString());
|
$parent->getConcreteString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue