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 598052b commit dbc1f63Copy full SHA for dbc1f63
tests/SerializerPhp80Test.php
@@ -28,7 +28,9 @@
28
test('serializing closures under namespace', function () {
29
$f1 = Route::make();
30
31
- expect('Tests\Fixtures\Route::Tests\Fixtures\{closure}')->toBe(s($f1)(new Model));
+ $s1 = s($f1);
32
+
33
+ expect('Tests\Fixtures\Route::Tests\Fixtures\{closure}')->toBe($s1(new Model));
34
})->with('serializers');
35
36
test('multiple named arguments within closures', function () {
0 commit comments