We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a70ad03 commit a8f3640Copy full SHA for a8f3640
test/VariableParserTest.php
@@ -38,7 +38,8 @@ public function testParseClass(): void
38
$this->assertInstanceOf(ParseResult::class, $result);
39
$functions = $result->functions;
40
$this->assertCount(1, $functions);
41
- $this->assertEquals('Clazz::bigFunction', $functions[0]->name);
+ // $this->assertEquals('Clazz::bigFunction', $functions[0]->name);
42
+ $this->assertEquals('bigFunction', $functions[0]->name);
43
$this->assertCount(4, $functions[0]->getVariables());
44
45
$vars = $functions[0]->getVariables();
0 commit comments