@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | * @deprecated 8.1.0 use method search() of \OCP\IUserManager - \OC::$server->getUserManager() |
66 | 66 | * @since 5.0.0 |
67 | 67 | */ |
68 | - public static function getUsers( $search = '', $limit = null, $offset = null ) { |
|
69 | - return \OC_User::getUsers( $search, $limit, $offset ); |
|
68 | + public static function getUsers($search = '', $limit = null, $offset = null) { |
|
69 | + return \OC_User::getUsers($search, $limit, $offset); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
@@ -77,8 +77,8 @@ discard block |
||
77 | 77 | * get() of \OCP\IUserManager - \OC::$server->getUserManager() |
78 | 78 | * @since 5.0.0 |
79 | 79 | */ |
80 | - public static function getDisplayName( $user = null ) { |
|
81 | - return \OC_User::getDisplayName( $user ); |
|
80 | + public static function getDisplayName($user = null) { |
|
81 | + return \OC_User::getDisplayName($user); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -90,8 +90,8 @@ discard block |
||
90 | 90 | * @deprecated 8.1.0 use method searchDisplayName() of \OCP\IUserManager - \OC::$server->getUserManager() |
91 | 91 | * @since 5.0.0 |
92 | 92 | */ |
93 | - public static function getDisplayNames( $search = '', $limit = null, $offset = null ) { |
|
94 | - return \OC_User::getDisplayNames( $search, $limit, $offset ); |
|
93 | + public static function getDisplayNames($search = '', $limit = null, $offset = null) { |
|
94 | + return \OC_User::getDisplayNames($search, $limit, $offset); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | * @deprecated 8.1.0 use method userExists() of \OCP\IUserManager - \OC::$server->getUserManager() |
112 | 112 | * @since 5.0.0 |
113 | 113 | */ |
114 | - public static function userExists( $uid, $excludingBackend = null ) { |
|
115 | - return \OC_User::userExists( $uid, $excludingBackend ); |
|
114 | + public static function userExists($uid, $excludingBackend = null) { |
|
115 | + return \OC_User::userExists($uid, $excludingBackend); |
|
116 | 116 | } |
117 | 117 | /** |
118 | 118 | * Logs the user out including all the session data |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | * @deprecated 8.0.0 Use \OC::$server->getUserManager()->checkPassword(); |
135 | 135 | * @since 5.0.0 |
136 | 136 | */ |
137 | - public static function checkPassword( $uid, $password ) { |
|
138 | - return \OC_User::checkPassword( $uid, $password ); |
|
137 | + public static function checkPassword($uid, $password) { |
|
138 | + return \OC_User::checkPassword($uid, $password); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
@@ -42,11 +42,11 @@ |
||
42 | 42 | const METHOD_STREAM = 'stream'; |
43 | 43 | const METHOD_MAIL = 'email'; |
44 | 44 | |
45 | - const PRIORITY_VERYLOW = 10; |
|
46 | - const PRIORITY_LOW = 20; |
|
47 | - const PRIORITY_MEDIUM = 30; |
|
48 | - const PRIORITY_HIGH = 40; |
|
49 | - const PRIORITY_VERYHIGH = 50; |
|
45 | + const PRIORITY_VERYLOW = 10; |
|
46 | + const PRIORITY_LOW = 20; |
|
47 | + const PRIORITY_MEDIUM = 30; |
|
48 | + const PRIORITY_HIGH = 40; |
|
49 | + const PRIORITY_VERYHIGH = 50; |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * The extension can return an array of additional notification types. |
@@ -68,7 +68,7 @@ |
||
68 | 68 | * remove all user backends |
69 | 69 | * @since 8.0.0 |
70 | 70 | */ |
71 | - public function clearBackends() ; |
|
71 | + public function clearBackends(); |
|
72 | 72 | |
73 | 73 | /** |
74 | 74 | * get a user by user id |
@@ -61,7 +61,7 @@ |
||
61 | 61 | */ |
62 | 62 | public function addEntityCollection($name, \Closure $entityExistsFunction) { |
63 | 63 | if (isset($this->collections[$name])) { |
64 | - throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"'); |
|
64 | + throw new \OutOfBoundsException('Duplicate entity name "'.$name.'"'); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | $this->collections[$name] = $entityExistsFunction; |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | * @deprecated 8.1.0 Use \OC::$server->getNavigationManager()->setActiveEntry() instead |
83 | 83 | * @since 4.0.0 |
84 | 84 | */ |
85 | - public static function setActiveNavigationEntry( $id ) { |
|
85 | + public static function setActiveNavigationEntry($id) { |
|
86 | 86 | \OC::$server->getNavigationManager()->setActiveEntry($id); |
87 | 87 | return true; |
88 | 88 | } |
@@ -94,8 +94,8 @@ discard block |
||
94 | 94 | * @return void |
95 | 95 | * @since 4.0.0 |
96 | 96 | */ |
97 | - public static function registerPersonal( $app, $page ) { |
|
98 | - \OC_App::registerPersonal( $app, $page ); |
|
97 | + public static function registerPersonal($app, $page) { |
|
98 | + \OC_App::registerPersonal($app, $page); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | * @return void |
106 | 106 | * @since 4.0.0 |
107 | 107 | */ |
108 | - public static function registerAdmin( $app, $page ) { |
|
109 | - \OC_App::registerAdmin( $app, $page ); |
|
108 | + public static function registerAdmin($app, $page) { |
|
109 | + \OC_App::registerAdmin($app, $page); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | /** |
@@ -116,8 +116,8 @@ discard block |
||
116 | 116 | * @return array|null |
117 | 117 | * @since 4.0.0 |
118 | 118 | */ |
119 | - public static function getAppInfo( $app, $path=false ) { |
|
120 | - return \OC_App::getAppInfo( $app, $path); |
|
119 | + public static function getAppInfo($app, $path = false) { |
|
120 | + return \OC_App::getAppInfo($app, $path); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -128,8 +128,8 @@ discard block |
||
128 | 128 | * This function checks whether or not an app is enabled. |
129 | 129 | * @since 4.0.0 |
130 | 130 | */ |
131 | - public static function isEnabled( $app ) { |
|
132 | - return \OC_App::isEnabled( $app ); |
|
131 | + public static function isEnabled($app) { |
|
132 | + return \OC_App::isEnabled($app); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | /** |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | * @since 4.0.0 |
140 | 140 | * @deprecated 9.0.0 ownCloud core will handle disabled apps and redirects to valid URLs |
141 | 141 | */ |
142 | - public static function checkAppEnabled( $app ) { |
|
142 | + public static function checkAppEnabled($app) { |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | /** |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * @return string |
149 | 149 | * @since 4.0.0 |
150 | 150 | */ |
151 | - public static function getAppVersion( $app ) { |
|
152 | - return \OC_App::getAppVersion( $app ); |
|
151 | + public static function getAppVersion($app) { |
|
152 | + return \OC_App::getAppVersion($app); |
|
153 | 153 | } |
154 | 154 | } |
@@ -72,7 +72,7 @@ |
||
72 | 72 | * @deprecated 9.1.0 Use the AppFramework |
73 | 73 | */ |
74 | 74 | public static function register($method, $url, $action, $app, $authLevel = self::USER_AUTH, |
75 | - $defaults = array(), $requirements = array()){ |
|
75 | + $defaults = array(), $requirements = array()) { |
|
76 | 76 | \OC_API::register($method, $url, $action, $app, $authLevel, $defaults, $requirements); |
77 | 77 | } |
78 | 78 |
@@ -159,7 +159,7 @@ |
||
159 | 159 | * @return bool Returns false on error. |
160 | 160 | * @since 6.0.0 |
161 | 161 | */ |
162 | - public function addMultiple($names, $sync=false, $id = null); |
|
162 | + public function addMultiple($names, $sync = false, $id = null); |
|
163 | 163 | |
164 | 164 | /** |
165 | 165 | * Delete tag/object relations from the db |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | * This function gets the value from config.php. If it does not exist, |
58 | 58 | * $default will be returned. |
59 | 59 | */ |
60 | - public static function getSystemValue( $key, $default = null ) { |
|
61 | - return \OC::$server->getConfig()->getSystemValue( $key, $default ); |
|
60 | + public static function getSystemValue($key, $default = null) { |
|
61 | + return \OC::$server->getConfig()->getSystemValue($key, $default); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -71,9 +71,9 @@ discard block |
||
71 | 71 | * This function sets the value and writes the config.php. If the file can |
72 | 72 | * not be written, false will be returned. |
73 | 73 | */ |
74 | - public static function setSystemValue( $key, $value ) { |
|
74 | + public static function setSystemValue($key, $value) { |
|
75 | 75 | try { |
76 | - \OC::$server->getConfig()->setSystemValue( $key, $value ); |
|
76 | + \OC::$server->getConfig()->setSystemValue($key, $value); |
|
77 | 77 | } catch (\Exception $e) { |
78 | 78 | return false; |
79 | 79 | } |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | * |
88 | 88 | * This function deletes the value from config.php. |
89 | 89 | */ |
90 | - public static function deleteSystemValue( $key ) { |
|
91 | - \OC::$server->getConfig()->deleteSystemValue( $key ); |
|
90 | + public static function deleteSystemValue($key) { |
|
91 | + \OC::$server->getConfig()->deleteSystemValue($key); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -102,8 +102,8 @@ discard block |
||
102 | 102 | * This function gets a value from the appconfig table. If the key does |
103 | 103 | * not exist the default value will be returned |
104 | 104 | */ |
105 | - public static function getAppValue( $app, $key, $default = null ) { |
|
106 | - return \OC::$server->getConfig()->getAppValue( $app, $key, $default ); |
|
105 | + public static function getAppValue($app, $key, $default = null) { |
|
106 | + return \OC::$server->getConfig()->getAppValue($app, $key, $default); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | /** |
@@ -116,9 +116,9 @@ discard block |
||
116 | 116 | * |
117 | 117 | * Sets a value. If the key did not exist before it will be created. |
118 | 118 | */ |
119 | - public static function setAppValue( $app, $key, $value ) { |
|
119 | + public static function setAppValue($app, $key, $value) { |
|
120 | 120 | try { |
121 | - \OC::$server->getConfig()->setAppValue( $app, $key, $value ); |
|
121 | + \OC::$server->getConfig()->setAppValue($app, $key, $value); |
|
122 | 122 | } catch (\Exception $e) { |
123 | 123 | return false; |
124 | 124 | } |
@@ -137,8 +137,8 @@ discard block |
||
137 | 137 | * This function gets a value from the preferences table. If the key does |
138 | 138 | * not exist the default value will be returned |
139 | 139 | */ |
140 | - public static function getUserValue( $user, $app, $key, $default = null ) { |
|
141 | - return \OC::$server->getConfig()->getUserValue( $user, $app, $key, $default ); |
|
140 | + public static function getUserValue($user, $app, $key, $default = null) { |
|
141 | + return \OC::$server->getConfig()->getUserValue($user, $app, $key, $default); |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | /** |
@@ -153,9 +153,9 @@ discard block |
||
153 | 153 | * Adds a value to the preferences. If the key did not exist before, it |
154 | 154 | * will be added automagically. |
155 | 155 | */ |
156 | - public static function setUserValue( $user, $app, $key, $value ) { |
|
156 | + public static function setUserValue($user, $app, $key, $value) { |
|
157 | 157 | try { |
158 | - \OC::$server->getConfig()->setUserValue( $user, $app, $key, $value ); |
|
158 | + \OC::$server->getConfig()->setUserValue($user, $app, $key, $value); |
|
159 | 159 | } catch (\Exception $e) { |
160 | 160 | return false; |
161 | 161 | } |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | * @return bool |
51 | 51 | * @since 5.0.0 |
52 | 52 | */ |
53 | - static function rmdirr( $dir ) { |
|
54 | - return \OC_Helper::rmdirr( $dir ); |
|
53 | + static function rmdirr($dir) { |
|
54 | + return \OC_Helper::rmdirr($dir); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead |
62 | 62 | * @since 5.0.0 |
63 | 63 | */ |
64 | - static function getMimeType( $path ) { |
|
64 | + static function getMimeType($path) { |
|
65 | 65 | return \OC::$server->getMimeTypeDetector()->detect($path); |
66 | 66 | } |
67 | 67 | |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | * @return array |
72 | 72 | * @since 6.0.0 |
73 | 73 | */ |
74 | - static public function searchByMime( $mimetype ) { |
|
75 | - return(\OC\Files\Filesystem::searchByMime( $mimetype )); |
|
74 | + static public function searchByMime($mimetype) { |
|
75 | + return(\OC\Files\Filesystem::searchByMime($mimetype)); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -82,8 +82,8 @@ discard block |
||
82 | 82 | * @return int the number of bytes copied |
83 | 83 | * @since 5.0.0 |
84 | 84 | */ |
85 | - public static function streamCopy( $source, $target ) { |
|
86 | - list($count, ) = \OC_Helper::streamCopy( $source, $target ); |
|
85 | + public static function streamCopy($source, $target) { |
|
86 | + list($count,) = \OC_Helper::streamCopy($source, $target); |
|
87 | 87 | return $count; |
88 | 88 | } |
89 | 89 | |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | * @deprecated 8.1.0 use getTemporaryFile() of \OCP\ITempManager - \OC::$server->getTempManager() |
97 | 97 | * @since 5.0.0 |
98 | 98 | */ |
99 | - public static function tmpFile( $postfix='' ) { |
|
99 | + public static function tmpFile($postfix = '') { |
|
100 | 100 | return \OC::$server->getTempManager()->getTemporaryFile($postfix); |
101 | 101 | } |
102 | 102 | |
@@ -119,8 +119,8 @@ discard block |
||
119 | 119 | * @return string |
120 | 120 | * @since 5.0.0 |
121 | 121 | */ |
122 | - public static function buildNotExistingFileName( $path, $filename ) { |
|
123 | - return(\OC_Helper::buildNotExistingFileName( $path, $filename )); |
|
122 | + public static function buildNotExistingFileName($path, $filename) { |
|
123 | + return(\OC_Helper::buildNotExistingFileName($path, $filename)); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | /** |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * @return \OC\Files\View |
131 | 131 | * @since 5.0.0 |
132 | 132 | */ |
133 | - public static function getStorage( $app ) { |
|
134 | - return \OC_App::getStorage( $app ); |
|
133 | + public static function getStorage($app) { |
|
134 | + return \OC_App::getStorage($app); |
|
135 | 135 | } |
136 | 136 | } |