murph-core/src/core/Murph.php
2022-11-19 19:53:28 +01:00

21 lines
277 B
PHP

<?php
namespace App\Core;
if (!defined('MURPH_VERSION')) {
define('MURPH_VERSION', 'v1.17.0');
}
/**
* class Murph.
*
* @author Simon Vieille <simon@deblan.fr>
*/
class Murph
{
public static function version(): string
{
return MURPH_VERSION;
}
}