Viewing File: /usr/local/cpanel/3rdparty/wp-toolkit/plib/vendor/cerbero/json-parser/src/Decoders/DecodedValue.php

<?php

namespace Cerbero\JsonParser\Decoders;

use Throwable;

/**
 * The decoded value.
 *
 */
final class DecodedValue
{
    /**
     * Retrieve a successfully decoded value
     *
     * @param mixed $value
     * @return self
     */
    public static function succeeded(mixed $value): self
    {
        return new self(true, $value);
    }

    /**
     * Retrieve a value failed to be decoded
     *
     * @param Throwable $e
     * @param string $json
     * @return self
     */
    public static function failed(Throwable $e, string $json): self
    {
        return new self(false, null, $e->getMessage(), $e->getCode(), $e, $json);
    }

    /**
     * Instantiate the class.
     *
     * @param mixed $value
     */
    private function __construct(
        public readonly bool $succeeded,
        public mixed $value = null,
        public readonly ?string $error = null,
        public readonly ?int $code = null,
        public readonly ?Throwable $exception = null,
        public readonly ?string $json = null,
    ) {
    }
}
Back to Directory File Manager