summaryrefslogtreecommitdiffstats
path: root/lib/private/Group/Backend.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Group/Backend.php')
-rw-r--r--lib/private/Group/Backend.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Group/Backend.php b/lib/private/Group/Backend.php
index 6c2973542cf..4e2f912e7fc 100644
--- a/lib/private/Group/Backend.php
+++ b/lib/private/Group/Backend.php
@@ -53,7 +53,7 @@ abstract class Backend implements \OCP\GroupInterface {
*/
public function getSupportedActions() {
$actions = 0;
- foreach($this->possibleActions AS $action => $methodName) {
+ foreach($this->possibleActions as $action => $methodName) {
if(method_exists($this, $methodName)) {
$actions |= $action;
}