summaryrefslogtreecommitdiffstats
path: root/lib/private/legacy/OC_App.php
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 16:48:31 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 16:48:31 +0200
commita7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (patch)
tree629f395d91f3cf15497bbfd6597e6df9b081cf36 /lib/private/legacy/OC_App.php
parent1762a409f954fd9a66e7572704ea9ba7813601b4 (diff)
downloadnextcloud-server-a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3.tar.gz
nextcloud-server-a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3.zip
Add visibility to all properties and move static keyword
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/legacy/OC_App.php')
-rw-r--r--lib/private/legacy/OC_App.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/private/legacy/OC_App.php b/lib/private/legacy/OC_App.php
index 5c06f66a20a..7b67dd3eada 100644
--- a/lib/private/legacy/OC_App.php
+++ b/lib/private/legacy/OC_App.php
@@ -65,12 +65,12 @@ use OCP\ILogger;
* upgrading and removing apps.
*/
class OC_App {
- static private $adminForms = [];
- static private $personalForms = [];
- static private $appTypes = [];
- static private $loadedApps = [];
- static private $altLogin = [];
- static private $alreadyRegistered = [];
+ private static $adminForms = [];
+ private static $personalForms = [];
+ private static $appTypes = [];
+ private static $loadedApps = [];
+ private static $altLogin = [];
+ private static $alreadyRegistered = [];
const supportedApp = 300;
const officialApp = 200;