Vous êtes connecté en tant que anonymous Se Deconnecter
<?php declare(strict_types=1);
/**
 * Part of Windwalker project.
 *
 * @copyright  Copyright (C) 2019 LYRASOFT.
 * @license    GNU General Public License version 2 or later;
 */

namespace Windwalker\Structure;

/**
 * The Format class.
 *
 * @since  2.1
 */
class Format
{
    public const JSON = 'json';

    public const INI = 'ini';

    public const YAML = 'yaml';

    public const XML = 'xml';

    public const PHP = 'php';

    public const HJSON = 'hjson';

    public const TOML = 'toml';
}