File "UnknownProperty.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Normalizers/Normalized/UnknownProperty.php
File size: 281 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\LaravelData\Normalizers\Normalized;

class UnknownProperty
{
    private static ?self $instance = null;

    private function __construct()
    {

    }

    public static function create(): self
    {
        return self::$instance ??= new self();
    }
}