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

<?php

namespace Cerbero\JsonParser\Decoders;

/**
 * The JSON decoder interface.
 *
 */
interface Decoder
{
    /**
     * Decode the given JSON.
     *
     * @param string $json
     * @return DecodedValue
     */
    public function decode(string $json): DecodedValue;
}
Back to Directory File Manager