prevent tracking generic dependency name

This commit is contained in:
Alan Hamlett 2018-03-10 13:15:01 -08:00
parent 218141217a
commit f6bc1b004d
1 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,9 @@ from ..compat import u
class PhpParser(TokenParser):
state = None
parens = 0
exclude = [
r'^app$',
]
def parse(self):
for index, token, content in self.tokens: