for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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
const VERSION = 'Jaxon 4.0.0-dev';
const CALLABLE_CLASS = 'CallableClass';
const CALLABLE_DIR = 'CallableDir';
const CALLABLE_FUNCTION = 'CallableFunction';
}