mirror of
https://gh.wpcy.net/https://github.com/rilustrisimo/freescout-support.git
synced 2026-04-26 14:02:20 +08:00
31 lines
503 B
PHP
31 lines
503 B
PHP
<?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';
|
|
}
|