X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/4ab8e94003e0d50e0b4e9c74c8bd4fb0d45bf7b4..275a867d7909596ff26ae7c0d64a45c63c743074:/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'; + } }