File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
src/Symfony/Component/VarDumper/Tests/Caster Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ public function testFromCallableClosureCaster()
89
89
}
90
90
$ var = [
91
91
(new \ReflectionMethod ($ this , __FUNCTION__ ))->getClosure ($ this ),
92
- (new \ReflectionMethod (__CLASS__ , 'tearDownAfterClass ' ))->getClosure (),
92
+ (new \ReflectionMethod (__CLASS__ , 'stub ' ))->getClosure (),
93
93
];
94
94
95
95
$ this ->assertDumpMatchesFormat (
@@ -100,8 +100,9 @@ public function testFromCallableClosureCaster()
100
100
file: "%sReflectionCasterTest.php"
101
101
line: "%d to %d"
102
102
}
103
- 1 => %sTestCase::tearDownAfterClass() {
104
- file: "%sTestCase.php"
103
+ 1 => Symfony\Component\VarDumper\Tests\Caster\ReflectionCasterTest::stub(): void {
104
+ returnType: "void"
105
+ file: "%sReflectionCasterTest.php"
105
106
line: "%d to %d"
106
107
}
107
108
]
@@ -244,6 +245,11 @@ public function testGenerator()
244
245
EODUMP;
245
246
$ this ->assertDumpMatchesFormat ($ expectedDump , $ generator );
246
247
}
248
+
249
+ public static function stub (): void
250
+ {
251
+
252
+ }
247
253
}
248
254
249
255
function reflectionParameterFixture (NotLoadableClass $ arg1 = null , $ arg2 )
You can’t perform that action at this time.
0 commit comments