freescout-support/Modules/ApiWebhooks/vendor/windwalker/structure/Format.php
Rouie Ilustrisimo 309cac053a slack
2025-05-11 13:59:20 +08:00

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';
}