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 56c19d2 commit 34171b1Copy full SHA for 34171b1
src/PHPSemVerChecker/Node/Statement/Function_.php
@@ -7,10 +7,9 @@
7
class Function_ {
8
public static function getFullyQualifiedName(BaseFunction $function)
9
{
10
- $fqfn = '';
11
if ($function->namespacedName) {
12
- $fqfn = $function->namespacedName->toString() . '::';
+ return $function->namespacedName->toString();
13
}
14
- return $fqfn . $function->name;
+ return $function->name;
15
16
0 commit comments