<?php
/**
* Jaxon.php - Jaxon class
*
* Defines a few constants for the library.
*
* @package jaxon-core
* @author Thierry Feuzeu <[email protected]>
* @copyright 2022 Thierry Feuzeu <[email protected]>
* @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
* @link https://github.com/jaxon-php/jaxon-core
*/
namespace Jaxon;
class Jaxon
{
/**
* @const string
*/
public const VERSION = 'Jaxon 5.x';
/**
* @const string
*/
public const CALLABLE_CLASS = 'CallableClass';
/**
* @const string
*/
public const CALLABLE_DIR = 'CallableDir';
/**
* @const string
*/
public const CALLABLE_FUNCTION = 'CallableFunction';
}
|