[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.15.31.50: ~ $
<?php

declare (strict_types=1);
namespace WP2FA_Vendor\DASPRiD\Enum;

use WP2FA_Vendor\DASPRiD\Enum\Exception\CloneNotSupportedException;
use WP2FA_Vendor\DASPRiD\Enum\Exception\SerializeNotSupportedException;
use WP2FA_Vendor\DASPRiD\Enum\Exception\UnserializeNotSupportedException;
final class NullValue
{
    /**
     * @var self
     */
    private static $instance;
    private function __construct()
    {
    }
    public static function instance() : self
    {
        return self::$instance ?: (self::$instance = new self());
    }
    /**
     * Forbid cloning enums.
     *
     * @throws CloneNotSupportedException
     */
    public final function __clone()
    {
        throw new CloneNotSupportedException();
    }
    /**
     * Forbid serializing enums.
     *
     * @throws SerializeNotSupportedException
     */
    public final function __sleep() : array
    {
        throw new SerializeNotSupportedException();
    }
    /**
     * Forbid unserializing enums.
     *
     * @throws UnserializeNotSupportedException
     */
    public final function __wakeup() : void
    {
        throw new UnserializeNotSupportedException();
    }
}

Filemanager

Name Type Size Permission Actions
Exception Folder 0755
AbstractEnum.php File 6.7 KB 0644
EnumMap.php File 10.81 KB 0644
NullValue.php File 1.13 KB 0644