*
* @return string The bundle alias
*/
- public function getAlias(): string {
+ public static function getAlias(): string {
//With namespace
if ($npos = strrpos(static::class, '\\')) {
//Set name pos
//Return underscored lowercase bundle alias
return Container::underscore(substr(static::class, $npos, $bpos));
- }
+ }
}