@@ -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 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | * @deprecated 8.1.0 use prepare() of \OCP\IDBConnection - \OC::$server->getDatabaseConnection() |
57 | 57 | * @since 4.5.0 |
58 | 58 | */ |
59 | - static public function prepare( $query, $limit=null, $offset=null ) { |
|
59 | + static public function prepare($query, $limit = null, $offset = null) { |
|
60 | 60 | return(\OC_DB::prepare($query, $limit, $offset)); |
61 | 61 | } |
62 | 62 | |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * @deprecated 8.1.0 use lastInsertId() of \OCP\IDBConnection - \OC::$server->getDatabaseConnection() |
90 | 90 | * @since 4.5.0 |
91 | 91 | */ |
92 | - public static function insertid($table=null) { |
|
92 | + public static function insertid($table = null) { |
|
93 | 93 | return \OC::$server->getDatabaseConnection()->lastInsertId($table); |
94 | 94 | } |
95 | 95 |
@@ -52,8 +52,8 @@ discard block |
||
52 | 52 | * null cache indefinitely |
53 | 53 | * @since 4.0.0 |
54 | 54 | */ |
55 | - static public function enableCaching( $cache_time = null ) { |
|
56 | - \OC_Response::enableCaching( $cache_time ); |
|
55 | + static public function enableCaching($cache_time = null) { |
|
56 | + \OC_Response::enableCaching($cache_time); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | * @param string $lastModified time when the response was last modified |
63 | 63 | * @since 4.0.0 |
64 | 64 | */ |
65 | - static public function setLastModifiedHeader( $lastModified ) { |
|
66 | - \OC_Response::setLastModifiedHeader( $lastModified ); |
|
65 | + static public function setLastModifiedHeader($lastModified) { |
|
66 | + \OC_Response::setLastModifiedHeader($lastModified); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -72,8 +72,8 @@ discard block |
||
72 | 72 | * @param string $type disposition type, either 'attachment' or 'inline' |
73 | 73 | * @since 7.0.0 |
74 | 74 | */ |
75 | - static public function setContentDispositionHeader( $filename, $type = 'attachment' ) { |
|
76 | - \OC_Response::setContentDispositionHeader( $filename, $type ); |
|
75 | + static public function setContentDispositionHeader($filename, $type = 'attachment') { |
|
76 | + \OC_Response::setContentDispositionHeader($filename, $type); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
@@ -100,8 +100,8 @@ discard block |
||
100 | 100 | * @param string $etag token to use for modification check |
101 | 101 | * @since 4.0.0 |
102 | 102 | */ |
103 | - static public function setETagHeader( $etag ) { |
|
104 | - \OC_Response::setETagHeader( $etag ); |
|
103 | + static public function setETagHeader($etag) { |
|
104 | + \OC_Response::setETagHeader($etag); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | /** |
@@ -110,8 +110,8 @@ discard block |
||
110 | 110 | * @since 4.0.0 |
111 | 111 | * @deprecated 8.1.0 - Use \OCP\AppFramework\Http\StreamResponse or another AppFramework controller instead |
112 | 112 | */ |
113 | - static public function sendFile( $filepath ) { |
|
114 | - \OC_Response::sendFile( $filepath ); |
|
113 | + static public function sendFile($filepath) { |
|
114 | + \OC_Response::sendFile($filepath); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | /** |
@@ -121,8 +121,8 @@ discard block |
||
121 | 121 | * DateTime object when to expire response |
122 | 122 | * @since 4.0.0 |
123 | 123 | */ |
124 | - static public function setExpiresHeader( $expires ) { |
|
125 | - \OC_Response::setExpiresHeader( $expires ); |
|
124 | + static public function setExpiresHeader($expires) { |
|
125 | + \OC_Response::setExpiresHeader($expires); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * @param string $location to redirect to |
131 | 131 | * @since 4.0.0 |
132 | 132 | */ |
133 | - static public function redirect( $location ) { |
|
134 | - \OC_Response::redirect( $location ); |
|
133 | + static public function redirect($location) { |
|
134 | + \OC_Response::redirect($location); |
|
135 | 135 | } |
136 | 136 | } |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | * @see \OCP\IURLGenerator::imagePath |
50 | 50 | * @deprecated 8.0.0 Use \OCP\Template::image_path() instead |
51 | 51 | */ |
52 | -function image_path( $app, $image ) { |
|
53 | - return(\image_path( $app, $image )); |
|
52 | +function image_path($app, $image) { |
|
53 | + return(\image_path($app, $image)); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | |
@@ -60,8 +60,8 @@ discard block |
||
60 | 60 | * @return string to the image of this file type. |
61 | 61 | * @deprecated 8.0.0 Use \OCP\Template::mimetype_icon() instead |
62 | 62 | */ |
63 | -function mimetype_icon( $mimetype ) { |
|
64 | - return(\mimetype_icon( $mimetype )); |
|
63 | +function mimetype_icon($mimetype) { |
|
64 | + return(\mimetype_icon($mimetype)); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
@@ -70,8 +70,8 @@ discard block |
||
70 | 70 | * @return string to the preview of the image |
71 | 71 | * @deprecated 8.0.0 Use \OCP\Template::preview_icon() instead |
72 | 72 | */ |
73 | -function preview_icon( $path ) { |
|
74 | - return(\preview_icon( $path )); |
|
73 | +function preview_icon($path) { |
|
74 | + return(\preview_icon($path)); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -82,8 +82,8 @@ discard block |
||
82 | 82 | * @return string link to the preview |
83 | 83 | * @deprecated 8.0.0 Use \OCP\Template::publicPreview_icon() instead |
84 | 84 | */ |
85 | -function publicPreview_icon ( $path, $token ) { |
|
86 | - return(\publicPreview_icon( $path, $token )); |
|
85 | +function publicPreview_icon($path, $token) { |
|
86 | + return(\publicPreview_icon($path, $token)); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | /** |
@@ -93,8 +93,8 @@ discard block |
||
93 | 93 | * @return string size as string |
94 | 94 | * @deprecated 8.0.0 Use \OCP\Template::human_file_size() instead |
95 | 95 | */ |
96 | -function human_file_size( $bytes ) { |
|
97 | - return(\human_file_size( $bytes )); |
|
96 | +function human_file_size($bytes) { |
|
97 | + return(\human_file_size($bytes)); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | * |
107 | 107 | * @deprecated 8.0.0 Use \OCP\Template::relative_modified_date() instead |
108 | 108 | */ |
109 | -function relative_modified_date( $timestamp, $dateOnly = false ) { |
|
109 | +function relative_modified_date($timestamp, $dateOnly = false) { |
|
110 | 110 | return(\relative_modified_date($timestamp, null, $dateOnly)); |
111 | 111 | } |
112 | 112 | |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * @return string html options |
131 | 131 | * @deprecated 8.0.0 Use \OCP\Template::html_select_options() instead |
132 | 132 | */ |
133 | -function html_select_options($options, $selected, $params=array()) { |
|
133 | +function html_select_options($options, $selected, $params = array()) { |
|
134 | 134 | return(\html_select_options($options, $selected, $params)); |
135 | 135 | } |
136 | 136 | |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | * @return string html options |
226 | 226 | * @since 8.0.0 |
227 | 227 | */ |
228 | - public static function html_select_options($options, $selected, $params=array()) { |
|
228 | + public static function html_select_options($options, $selected, $params = array()) { |
|
229 | 229 | return \html_select_options($options, $selected, $params); |
230 | 230 | } |
231 | 231 | } |
@@ -35,7 +35,7 @@ |
||
35 | 35 | /** |
36 | 36 | * @since 9.1.0 |
37 | 37 | */ |
38 | - const KEY_ADMIN_SECTION = 'admin-section'; |
|
38 | + const KEY_ADMIN_SECTION = 'admin-section'; |
|
39 | 39 | |
40 | 40 | /** |
41 | 41 | * sets up settings according to data specified by an apps info.xml, within |
@@ -29,7 +29,7 @@ |
||
29 | 29 | * @package OCP |
30 | 30 | * @since 7.0.0 |
31 | 31 | */ |
32 | -interface ICacheFactory{ |
|
32 | +interface ICacheFactory { |
|
33 | 33 | /** |
34 | 34 | * Get a memory cache instance |
35 | 35 | * |
@@ -57,6 +57,6 @@ |
||
57 | 57 | * @since 7.0.0 |
58 | 58 | */ |
59 | 59 | public function __toString() { |
60 | - return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; |
|
60 | + return __CLASS__.": [{$this->code}]: {$this->message}\n"; |
|
61 | 61 | } |
62 | 62 | } |
@@ -48,7 +48,7 @@ |
||
48 | 48 | * @since 8.1.0 |
49 | 49 | */ |
50 | 50 | public function __construct($path, \Exception $previous = null) { |
51 | - parent::__construct('"' . $path . '" is locked', 0, $previous); |
|
51 | + parent::__construct('"'.$path.'" is locked', 0, $previous); |
|
52 | 52 | $this->path = $path; |
53 | 53 | } |
54 | 54 |