From f1c0cc5c0648271293d4b1d804dd5fdb85a9beac Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Tue, 6 Jun 2017 14:41:42 -0700 Subject: [PATCH] Remove comments, question answered by Felix --- src/DefinitionResolver.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/DefinitionResolver.php b/src/DefinitionResolver.php index 33c72c2..8e871cd 100644 --- a/src/DefinitionResolver.php +++ b/src/DefinitionResolver.php @@ -198,11 +198,9 @@ class DefinitionResolver ); if ($node instanceof Node\Statement\ClassDeclaration && - // TODO - this should be bette rrpreented in the parser API + // TODO - this should be better represented in the parser API $node->classBaseClause !== null && $node->classBaseClause->baseClass !== null) { $def->extends = [(string)$node->classBaseClause->baseClass->getResolvedName()]; - // TODO - why is this represented as an array? - // TODO interface implementations. } elseif ( $node instanceof Node\Statement\InterfaceDeclaration && // TODO - this should be better represented in the parser API