File "UnReducedArgument.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/backtrace/src/Arguments/ReducedArgument/UnReducedArgument.php
File size: 423 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\Backtrace\Arguments\ReducedArgument;

class UnReducedArgument implements ReducedArgumentContract
{
    /** @var self|null */
    private static $instance = null;

    private function __construct()
    {
    }

    public static function create(): self
    {
        if (self::$instance !== null) {
            return self::$instance;
        }

        return self::$instance = new self();
    }
}