@@ -79,13 +79,13 @@ discard block |
||
79 | 79 | /** @var mixed[] $response */ |
80 | 80 | $response = parent::fetch($ETag, $content); |
81 | 81 | |
82 | - foreach($response['data'] as $dataKey => $app) { |
|
82 | + foreach ($response['data'] as $dataKey => $app) { |
|
83 | 83 | $releases = []; |
84 | 84 | |
85 | 85 | // Filter all compatible releases |
86 | - foreach($app['releases'] as $release) { |
|
86 | + foreach ($app['releases'] as $release) { |
|
87 | 87 | // Exclude all nightly and pre-releases |
88 | - if($release['isNightly'] === false |
|
88 | + if ($release['isNightly'] === false |
|
89 | 89 | && strpos($release['version'], '-') === false) { |
90 | 90 | // Exclude all versions not compatible with the current version |
91 | 91 | try { |
@@ -108,23 +108,23 @@ discard block |
||
108 | 108 | |
109 | 109 | // Get the highest version |
110 | 110 | $versions = []; |
111 | - foreach($releases as $release) { |
|
111 | + foreach ($releases as $release) { |
|
112 | 112 | $versions[] = $release['version']; |
113 | 113 | } |
114 | 114 | usort($versions, 'version_compare'); |
115 | 115 | $versions = array_reverse($versions); |
116 | 116 | $compatible = false; |
117 | - if(isset($versions[0])) { |
|
117 | + if (isset($versions[0])) { |
|
118 | 118 | $highestVersion = $versions[0]; |
119 | 119 | foreach ($releases as $release) { |
120 | - if ((string)$release['version'] === (string)$highestVersion) { |
|
120 | + if ((string) $release['version'] === (string) $highestVersion) { |
|
121 | 121 | $compatible = true; |
122 | 122 | $response['data'][$dataKey]['releases'] = [$release]; |
123 | 123 | break; |
124 | 124 | } |
125 | 125 | } |
126 | 126 | } |
127 | - if(!$compatible) { |
|
127 | + if (!$compatible) { |
|
128 | 128 | unset($response['data'][$dataKey]); |
129 | 129 | } |
130 | 130 | } |
@@ -105,7 +105,7 @@ |
||
105 | 105 | $defaultLogFile = rtrim($dataDir, '/').'/nextcloud.log'; |
106 | 106 | $output->writeln('Log file: '.$this->config->getSystemValue('logfile', $defaultLogFile)); |
107 | 107 | |
108 | - $rotateSize = $this->config->getSystemValue('log_rotate_size', 100*1024*1024); |
|
108 | + $rotateSize = $this->config->getSystemValue('log_rotate_size', 100 * 1024 * 1024); |
|
109 | 109 | if ($rotateSize) { |
110 | 110 | $rotateString = \OCP\Util::humanFileSize($rotateSize); |
111 | 111 | } else { |
@@ -59,10 +59,10 @@ |
||
59 | 59 | if (is_array($value)) { |
60 | 60 | $output->writeln(" <comment>>></comment> $key:"); |
61 | 61 | foreach ($value as $subKey => $subValue) { |
62 | - $output->writeln(" <comment>>></comment> $subKey: " . str_repeat(' ', 46 - strlen($subKey)) . $subValue); |
|
62 | + $output->writeln(" <comment>>></comment> $subKey: ".str_repeat(' ', 46 - strlen($subKey)).$subValue); |
|
63 | 63 | } |
64 | 64 | } else { |
65 | - $output->writeln(" <comment>>></comment> $key: " . str_repeat(' ', 50 - strlen($key)) . $value); |
|
65 | + $output->writeln(" <comment>>></comment> $key: ".str_repeat(' ', 50 - strlen($key)).$value); |
|
66 | 66 | } |
67 | 67 | } |
68 | 68 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | return; |
93 | 93 | } |
94 | 94 | |
95 | - return $this->checkQuota($parent->getPath() . '/' . basename($uri)); |
|
95 | + return $this->checkQuota($parent->getPath().'/'.basename($uri)); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | |
153 | 153 | if ($length) { |
154 | 154 | list($parentPath, $newName) = \Sabre\Uri\split($path); |
155 | - if(is_null($parentPath)) { |
|
155 | + if (is_null($parentPath)) { |
|
156 | 156 | $parentPath = ''; |
157 | 157 | } |
158 | 158 | $req = $this->server->httpRequest; |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | // there is still enough space for the remaining chunks |
164 | 164 | $length -= $chunkHandler->getCurrentSize(); |
165 | 165 | // use target file name for free space check in case of shared files |
166 | - $path = rtrim($parentPath, '/') . '/' . $info['name']; |
|
166 | + $path = rtrim($parentPath, '/').'/'.$info['name']; |
|
167 | 167 | } |
168 | 168 | $freeSpace = $this->getFreeSpace($path); |
169 | 169 | if ($freeSpace >= 0 && $length > $freeSpace) { |
@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | use OCP\Settings\IIconSection; |
31 | 31 | use OCP\Settings\ISettings; |
32 | 32 | |
33 | -trait CommonSettingsTrait { |
|
33 | +trait CommonSettingsTrait { |
|
34 | 34 | /** @var ISettingsManager */ |
35 | 35 | private $settingsManager; |
36 | 36 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | 'admin' => [] |
48 | 48 | ]; |
49 | 49 | |
50 | - if(\OC_User::isAdminUser(\OC_User::getUser())) { |
|
50 | + if (\OC_User::isAdminUser(\OC_User::getUser())) { |
|
51 | 51 | $templateParameters['admin'] = $this->formatAdminSections($currentType, $currentSection); |
52 | 52 | } |
53 | 53 | |
@@ -59,11 +59,11 @@ discard block |
||
59 | 59 | protected function formatSections($sections, $currentSection, $type, $currentType) { |
60 | 60 | $templateParameters = []; |
61 | 61 | /** @var \OCP\Settings\ISection[] $prioritizedSections */ |
62 | - foreach($sections as $prioritizedSections) { |
|
62 | + foreach ($sections as $prioritizedSections) { |
|
63 | 63 | foreach ($prioritizedSections as $section) { |
64 | - if($type === 'admin') { |
|
64 | + if ($type === 'admin') { |
|
65 | 65 | $settings = $this->settingsManager->getAdminSettings($section->getID()); |
66 | - } else if($type === 'personal') { |
|
66 | + } else if ($type === 'personal') { |
|
67 | 67 | $settings = $this->settingsManager->getPersonalSettings($section->getID()); |
68 | 68 | } |
69 | 69 | if (empty($settings) && !($section->getID() === 'additional' && count(\OC_App::getForms('admin')) > 0)) { |
@@ -80,7 +80,7 @@ |
||
80 | 80 | 'lastcron' => $this->config->getAppValue('core', 'lastcron', false), |
81 | 81 | 'cronErrors' => $this->config->getAppValue('core', 'cronErrors'), |
82 | 82 | 'cli_based_cron_possible' => function_exists('posix_getpwuid'), |
83 | - 'cli_based_cron_user' => function_exists('posix_getpwuid') ? posix_getpwuid(fileowner(\OC::$configDir . 'config.php'))['name'] : '', |
|
83 | + 'cli_based_cron_user' => function_exists('posix_getpwuid') ? posix_getpwuid(fileowner(\OC::$configDir.'config.php'))['name'] : '', |
|
84 | 84 | ]; |
85 | 85 | |
86 | 86 | return new TemplateResponse('settings', 'settings/admin/server', $parameters, ''); |
@@ -106,7 +106,7 @@ |
||
106 | 106 | $suffix = '…'; |
107 | 107 | } |
108 | 108 | |
109 | - return $prefix . substr($message, $start, $end - $start) . $suffix; |
|
109 | + return $prefix.substr($message, $start, $end - $start).$suffix; |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | } |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | ) { |
59 | 59 | $backend = $this->backendService->getBackend($storageOptions['backend']); |
60 | 60 | if (!$backend) { |
61 | - throw new \UnexpectedValueException('Invalid backend ' . $storageOptions['backend']); |
|
61 | + throw new \UnexpectedValueException('Invalid backend '.$storageOptions['backend']); |
|
62 | 62 | } |
63 | 63 | $storageConfig->setBackend($backend); |
64 | 64 | if (isset($storageOptions['authMechanism']) && $storageOptions['authMechanism'] !== 'builtin::builtin') { |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | $storageOptions['authMechanism'] = 'null'; // to make error handling easier |
69 | 69 | } |
70 | 70 | if (!$authMechanism) { |
71 | - throw new \UnexpectedValueException('Invalid authentication mechanism ' . $storageOptions['authMechanism']); |
|
71 | + throw new \UnexpectedValueException('Invalid authentication mechanism '.$storageOptions['authMechanism']); |
|
72 | 72 | } |
73 | 73 | $storageConfig->setAuthMechanism($authMechanism); |
74 | 74 | $storageConfig->setBackendOptions($storageOptions['options']); |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | $parts = explode('/', ltrim($rootMountPath, '/'), 3); |
141 | 141 | if (count($parts) < 3) { |
142 | 142 | // something went wrong, skip |
143 | - \OC::$server->getLogger()->error('Could not parse mount point "' . $rootMountPath . '"', ['app' => 'files_external']); |
|
143 | + \OC::$server->getLogger()->error('Could not parse mount point "'.$rootMountPath.'"', ['app' => 'files_external']); |
|
144 | 144 | continue; |
145 | 145 | } |
146 | 146 | $relativeMountPath = rtrim($parts[2], '/'); |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | $storageOptions['authMechanism'] = null; // ensure config hash works |
155 | 155 | } |
156 | 156 | if (isset($storageOptions['id'])) { |
157 | - $configId = (int)$storageOptions['id']; |
|
157 | + $configId = (int) $storageOptions['id']; |
|
158 | 158 | if (isset($storages[$configId])) { |
159 | 159 | $currentStorage = $storages[$configId]; |
160 | 160 | } |
@@ -34,11 +34,11 @@ discard block |
||
34 | 34 | * |
35 | 35 | */ |
36 | 36 | |
37 | -require_once __DIR__ . '/lib/versioncheck.php'; |
|
37 | +require_once __DIR__.'/lib/versioncheck.php'; |
|
38 | 38 | |
39 | 39 | try { |
40 | 40 | |
41 | - require_once __DIR__ . '/lib/base.php'; |
|
41 | + require_once __DIR__.'/lib/base.php'; |
|
42 | 42 | |
43 | 43 | if (\OCP\Util::needUpgrade()) { |
44 | 44 | \OC::$server->getLogger()->debug('Update required, skipping cron', ['app' => 'cron']); |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $appMode = $config->getAppValue('core', 'backgroundjobs_mode', 'ajax'); |
75 | 75 | if ($appMode === 'none') { |
76 | 76 | if (OC::$CLI) { |
77 | - echo 'Background Jobs are disabled!' . PHP_EOL; |
|
77 | + echo 'Background Jobs are disabled!'.PHP_EOL; |
|
78 | 78 | } else { |
79 | 79 | OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!'))); |
80 | 80 | } |
@@ -89,15 +89,15 @@ discard block |
||
89 | 89 | |
90 | 90 | // the cron job must be executed with the right user |
91 | 91 | if (!function_exists('posix_getuid')) { |
92 | - echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL; |
|
92 | + echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php".PHP_EOL; |
|
93 | 93 | exit(1); |
94 | 94 | } |
95 | 95 | $user = posix_getpwuid(posix_getuid()); |
96 | - $configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php')); |
|
96 | + $configUser = posix_getpwuid(fileowner(OC::$configDir.'config.php')); |
|
97 | 97 | if ($user['name'] !== $configUser['name']) { |
98 | - echo "Console has to be executed with the same user as the web server is operated" . PHP_EOL; |
|
99 | - echo "Current user: " . $user['name'] . PHP_EOL; |
|
100 | - echo "Web server user: " . $configUser['name'] . PHP_EOL; |
|
98 | + echo "Console has to be executed with the same user as the web server is operated".PHP_EOL; |
|
99 | + echo "Current user: ".$user['name'].PHP_EOL; |
|
100 | + echo "Web server user: ".$configUser['name'].PHP_EOL; |
|
101 | 101 | exit(1); |
102 | 102 | } |
103 | 103 |