File "JsonConfig.php"

Full Path: /home/warrior1/public_html/plugins/file-manager/vendor/bitapps/wp-kit/src/Configs/JsonConfig.php
File size: 313 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace BitApps\WPKit\Configs;

final class JsonConfig
{
    protected static $decodeAsArray = true;

    public static function setDecodeAsArray($value)
    {
        static::$decodeAsArray = $value;
    }

    public static function decodeAsArray()
    {
        return static::$decodeAsArray;
    }
}