X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/4ab8e94003e0d50e0b4e9c74c8bd4fb0d45bf7b4..9a5697bdce686f306f1cd66db74187df2a4c4e1d:/RapsysPackBundle.php diff --git a/RapsysPackBundle.php b/RapsysPackBundle.php index 67b26ce..e773042 100644 --- a/RapsysPackBundle.php +++ b/RapsysPackBundle.php @@ -23,7 +23,7 @@ class RapsysPackBundle extends Bundle { * * @return string The bundle alias */ - public static function getAlias(): string { + public static function getAlias(): string { //With namespace if ($npos = strrpos(static::class, '\\')) { //Set name pos @@ -45,5 +45,15 @@ class RapsysPackBundle extends Bundle { //Return underscored lowercase bundle alias return Container::underscore(substr(static::class, $npos, $bpos)); - } + } + + /** + * Return bundle version + * + * @return string The bundle version + */ + public static function getVersion(): string { + //Return version + return '0.2.5'; + } }