File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 21
21
"php" : " ^7.3|^8.0"
22
22
},
23
23
"require-dev" : {
24
- "pestphp/pest" : " ^1.18 " ,
25
- "phpstan/phpstan" : " ^0.12.98 " ,
26
- "symfony/var-dumper" : " ^5.3 "
24
+ "pestphp/pest" : " ^1.21.3 " ,
25
+ "phpstan/phpstan" : " ^1.8.2 " ,
26
+ "symfony/var-dumper" : " ^5.4.11 "
27
27
},
28
28
"autoload" : {
29
29
"psr-4" : {
Original file line number Diff line number Diff line change @@ -83,6 +83,9 @@ public function __unserialize($signature)
83
83
throw new InvalidSignatureException ();
84
84
}
85
85
86
- $ this ->closure = unserialize ($ signature ['serializable ' ])->getClosure ();
86
+ /** @var \Laravel\SerializableClosure\Contracts\Serializable $serializable */
87
+ $ serializable = unserialize ($ signature ['serializable ' ]);
88
+
89
+ $ this ->closure = $ serializable ->getClosure ();
87
90
}
88
91
}
You can’t perform that action at this time.
0 commit comments