murph-core/src/core/Murph.php
2023-01-13 18:20:51 +01:00

21 lines
277 B
PHP

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