X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/ce4ef48d51a312fa5f854e91f3825a699d9325e8..060aa4e7dd4d917cd58bd026b4a0892d3416048c:/RapsysPackBundle.php

diff --git a/RapsysPackBundle.php b/RapsysPackBundle.php
index ca879af..e773042 100644
--- a/RapsysPackBundle.php
+++ b/RapsysPackBundle.php
@@ -23,7 +23,7 @@ class RapsysPackBundle extends Bundle {
 	 *
 	 * @return string The bundle alias
 	 */
-    public 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';
+	}
 }