summaryrefslogtreecommitdiffstats
path: root/lib/private/App/AppStore/Bundles/Bundle.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/App/AppStore/Bundles/Bundle.php')
-rw-r--r--lib/private/App/AppStore/Bundles/Bundle.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/App/AppStore/Bundles/Bundle.php b/lib/private/App/AppStore/Bundles/Bundle.php
index d6b74ff3b6b..16458121b36 100644
--- a/lib/private/App/AppStore/Bundles/Bundle.php
+++ b/lib/private/App/AppStore/Bundles/Bundle.php
@@ -41,7 +41,7 @@ abstract class Bundle {
*
* @return string
*/
- public final function getIdentifier() {
+ final public function getIdentifier() {
return substr(strrchr(get_class($this), '\\'), 1);
}
@@ -50,12 +50,12 @@ abstract class Bundle {
*
* @return string
*/
- public abstract function getName();
+ abstract public function getName();
/**
* Get the list of app identifiers in the bundle
*
* @return array
*/
- public abstract function getAppIdentifiers();
+ abstract public function getAppIdentifiers();
}