murph-core/src/core/Murph.php
2022-05-07 16:24:11 +02:00

21 lines
277 B
PHP

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