. */ declare(strict_types=1); namespace SP\Tests; use Attribute; /** * Class BodyChecker */ #[Attribute(Attribute::TARGET_METHOD)] final readonly class BodyChecker { public function __construct(public string $target) { } }