You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following fatal error is emitted when serializing closures created from class methods with attributes that can target only methods and not functions.
PHP Fatal error: Attribute "MyAttribute" cannot target function (allowed targets: method) in laravel-serializable-closure://#[MyAttribute()]
function (): void {
\var_dump("hello");
} on line 3
Steps To Reproduce
<?php
use Laravel\SerializableClosure\SerializableClosure;
require 'vendor/autoload.php';
class a {
public function test(): void {}
}
class b extends a {
#[\Override]
public function test(): void {
var_dump("hello");
}
}
$a = new SerializableClosure((new b)->test(...));
$a = unserialize(serialize($a));
$a();
The text was updated successfully, but these errors were encountered:
As Laravel is an open source project, we rely on the community to help us diagnose and fix issues as it is not possible to research and fix every issue reported to us via GitHub.
If possible, please make a pull request fixing the issue you have described, along with corresponding tests. All pull requests are promptly reviewed by the Laravel team.
Serializable Closure Version
2.0.3
PHP Version
8.4.4
Description
The following fatal error is emitted when serializing closures created from class methods with attributes that can target only methods and not functions.
Steps To Reproduce
The text was updated successfully, but these errors were encountered: