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 f803499 commit 8e1686bCopy full SHA for 8e1686b
src/Event/Value/Test/TestDoxBuilder.php
@@ -38,13 +38,14 @@ public static function fromTestCase(TestCase $testCase): TestDox
38
*/
39
public static function fromClassNameAndMethodName(string $className, string $methodName): TestDox
40
{
41
- $prettifier = new NamePrettifier;
42
- $prettyMethod = $prettifier->prettifyTestMethodName($methodName);
+ $prettifier = new NamePrettifier;
+
43
+ $prettifiedMethodName = $prettifier->prettifyTestMethodName($methodName);
44
45
return new TestDox(
46
$prettifier->prettifyTestClassName($className),
- $prettyMethod,
47
+ $prettifiedMethodName,
48
49
);
50
}
51
0 commit comments