| @@ -138,7 +138,7 @@ discard block | ||
| 138 | 138 | } | 
| 139 | 139 |  		foreach ($favorites['folders'] as $favorite) { | 
| 140 | 140 |  			$limitations[] = $query->expr()->like('file', $query->createNamedParameter( | 
| 141 | - $this->db->escapeLikeParameter($favorite . '/') . '%' | |
| 141 | + $this->db->escapeLikeParameter($favorite.'/').'%' | |
| 142 | 142 | )); | 
| 143 | 143 | } | 
| 144 | 144 | |
| @@ -148,9 +148,9 @@ discard block | ||
| 148 | 148 | |
| 149 | 149 |  		$function = $query->createFunction(' | 
| 150 | 150 | CASE | 
| 151 | -				WHEN ' . $query->getColumnName('app') . ' <> ' . $query->createNamedParameter('files') . ' THEN 1 | |
| 152 | -				WHEN ' . $query->getColumnName('app') . ' = ' . $query->createNamedParameter('files') . ' | |
| 153 | -					AND (' . implode(' OR ', $limitations) . ') | |
| 151 | +				WHEN ' . $query->getColumnName('app').' <> '.$query->createNamedParameter('files').' THEN 1 | |
| 152 | +				WHEN ' . $query->getColumnName('app').' = '.$query->createNamedParameter('files').' | |
| 153 | +					AND (' . implode(' OR ', $limitations).') | |
| 154 | 154 | THEN 1 | 
| 155 | 155 | END = 1' | 
| 156 | 156 | ); | 
| @@ -64,7 +64,7 @@ | ||
| 64 | 64 |  			if (!empty($nodes)) { | 
| 65 | 65 | /** @var \OCP\Files\Node $node */ | 
| 66 | 66 | $node = array_shift($nodes); | 
| 67 | - $path = substr($node->getPath(), strlen($user . '/files/')); | |
| 67 | + $path = substr($node->getPath(), strlen($user.'/files/')); | |
| 68 | 68 | |
| 69 | 69 | $items[] = $path; | 
| 70 | 70 |  				if ($node instanceof Folder) { | 
| @@ -80,12 +80,12 @@ | ||
| 80 | 80 | $deletedEntries = 0; | 
| 81 | 81 | |
| 82 | 82 | $query = $this->connection->getQueryBuilder(); | 
| 83 | -		$query->select('t1.' . $idCol) | |
| 83 | +		$query->select('t1.'.$idCol) | |
| 84 | 84 | ->from($table, 't1') | 
| 85 | 85 |  			->where($query->expr()->eq($typeCol, $query->expr()->literal('files'))) | 
| 86 | 86 |  			->andWhere($query->expr()->isNull('t2.fileid')) | 
| 87 | -			->leftJoin('t1', 'filecache', 't2', $query->expr()->eq($query->expr()->castColumn('t1.' . $idCol, IQueryBuilder::PARAM_INT), 't2.fileid')) | |
| 88 | -			->groupBy('t1.' . $idCol) | |
| 87 | +			->leftJoin('t1', 'filecache', 't2', $query->expr()->eq($query->expr()->castColumn('t1.'.$idCol, IQueryBuilder::PARAM_INT), 't2.fileid')) | |
| 88 | +			->groupBy('t1.'.$idCol) | |
| 89 | 89 | ->setMaxResults(self::CHUNK_SIZE); | 
| 90 | 90 | |
| 91 | 91 | $deleteQuery = $this->connection->getQueryBuilder(); | 
| @@ -41,7 +41,7 @@ | ||
| 41 | 41 | $application->registerRoutes($this, [ | 
| 42 | 42 | 'ocs' => [ | 
| 43 | 43 | ['name' => 'ConfigAPI#create', 'url' => '/api/v1/config', 'verb' => 'POST'], | 
| 44 | -		['name' => 'ConfigAPI#show',   'url' => '/api/v1/config/{configID}', 'verb' => 'GET'], | |
| 44 | +		['name' => 'ConfigAPI#show', 'url' => '/api/v1/config/{configID}', 'verb' => 'GET'], | |
| 45 | 45 |  		['name' => 'ConfigAPI#modify', 'url' => '/api/v1/config/{configID}', 'verb' => 'PUT'], | 
| 46 | 46 |  		['name' => 'ConfigAPI#delete', 'url' => '/api/v1/config/{configID}', 'verb' => 'DELETE'], | 
| 47 | 47 | ] | 
| @@ -30,13 +30,13 @@ | ||
| 30 | 30 | $limit = null; | 
| 31 | 31 | $offset = null; | 
| 32 | 32 |  if (isset($_GET['pattern'])) { | 
| 33 | - $pattern = (string)$_GET['pattern']; | |
| 33 | + $pattern = (string) $_GET['pattern']; | |
| 34 | 34 | } | 
| 35 | 35 |  if (isset($_GET['limit'])) { | 
| 36 | - $limit = (int)$_GET['limit']; | |
| 36 | + $limit = (int) $_GET['limit']; | |
| 37 | 37 | } | 
| 38 | 38 |  if (isset($_GET['offset'])) { | 
| 39 | - $offset = (int)$_GET['offset']; | |
| 39 | + $offset = (int) $_GET['offset']; | |
| 40 | 40 | } | 
| 41 | 41 | |
| 42 | 42 | $groups = []; | 
| @@ -172,11 +172,11 @@ | ||
| 172 | 172 |  	public function getStorageForAllUsers() { | 
| 173 | 173 | $mounts = $this->dbConfig->getAllMounts(); | 
| 174 | 174 | $configs = array_map([$this, 'getStorageConfigFromDBMount'], $mounts); | 
| 175 | -		$configs = array_filter($configs, function ($config) { | |
| 175 | +		$configs = array_filter($configs, function($config) { | |
| 176 | 176 | return $config instanceof StorageConfig; | 
| 177 | 177 | }); | 
| 178 | 178 | |
| 179 | -		$keys = array_map(function (StorageConfig $config) { | |
| 179 | +		$keys = array_map(function(StorageConfig $config) { | |
| 180 | 180 | return $config->getId(); | 
| 181 | 181 | }, $configs); | 
| 182 | 182 | |
| @@ -103,7 +103,7 @@ discard block | ||
| 103 | 103 |  		try { | 
| 104 | 104 | $mount = $this->globalService->getStorage($mountId); | 
| 105 | 105 |  		} catch (NotFoundException $e) { | 
| 106 | -			$output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts</error>'); | |
| 106 | +			$output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts</error>'); | |
| 107 | 107 | return 404; | 
| 108 | 108 | } | 
| 109 | 109 | |
| @@ -123,13 +123,13 @@ discard block | ||
| 123 | 123 |  		if ((count($addUsers) + count($removeUsers) + count($addGroups) + count($removeGroups) > 0) || $input->getOption('remove-all')) { | 
| 124 | 124 |  			foreach ($addUsers as $addUser) { | 
| 125 | 125 |  				if (!$this->userManager->userExists($addUser)) { | 
| 126 | -					$output->writeln('<error>User "' . $addUser . '" not found</error>'); | |
| 126 | +					$output->writeln('<error>User "'.$addUser.'" not found</error>'); | |
| 127 | 127 | return 404; | 
| 128 | 128 | } | 
| 129 | 129 | } | 
| 130 | 130 |  			foreach ($addGroups as $addGroup) { | 
| 131 | 131 |  				if (!$this->groupManager->groupExists($addGroup)) { | 
| 132 | -					$output->writeln('<error>Group "' . $addGroup . '" not found</error>'); | |
| 132 | +					$output->writeln('<error>Group "'.$addGroup.'" not found</error>'); | |
| 133 | 133 | return 404; | 
| 134 | 134 | } | 
| 135 | 135 | } | 
| @@ -68,7 +68,7 @@ | ||
| 68 | 68 |  		try { | 
| 69 | 69 | $mount = $this->globalService->getStorage($mountId); | 
| 70 | 70 |  		} catch (NotFoundException $e) { | 
| 71 | -			$output->writeln('<error>Mount with id "' . $mountId . ' not found, check "occ files_external:list" to get available mounts"</error>'); | |
| 71 | +			$output->writeln('<error>Mount with id "'.$mountId.' not found, check "occ files_external:list" to get available mounts"</error>'); | |
| 72 | 72 | return 404; | 
| 73 | 73 | } | 
| 74 | 74 | |
| @@ -71,14 +71,14 @@ discard block | ||
| 71 | 71 |  		$backend = $input->getArgument('backend'); | 
| 72 | 72 |  		if ($type) { | 
| 73 | 73 |  			if (!isset($data[$type])) { | 
| 74 | -				$output->writeln('<error>Invalid type "' . $type . '". Possible values are "authentication" or "storage"</error>'); | |
| 74 | +				$output->writeln('<error>Invalid type "'.$type.'". Possible values are "authentication" or "storage"</error>'); | |
| 75 | 75 | return 1; | 
| 76 | 76 | } | 
| 77 | 77 | $data = $data[$type]; | 
| 78 | 78 | |
| 79 | 79 |  			if ($backend) { | 
| 80 | 80 |  				if (!isset($data[$backend])) { | 
| 81 | -					$output->writeln('<error>Unknown backend "' . $backend . '" of type  "' . $type . '"</error>'); | |
| 81 | +					$output->writeln('<error>Unknown backend "'.$backend.'" of type  "'.$type.'"</error>'); | |
| 82 | 82 | return 1; | 
| 83 | 83 | } | 
| 84 | 84 | $data = $data[$backend]; | 
| @@ -99,7 +99,7 @@ discard block | ||
| 99 | 99 | $result['storage_class'] = $backend->getStorageClass(); | 
| 100 | 100 | $authBackends = $this->backendService->getAuthMechanismsByScheme(array_keys($backend->getAuthSchemes())); | 
| 101 | 101 | $result['supported_authentication_backends'] = array_keys($authBackends); | 
| 102 | -			$authConfig = array_map(function (AuthMechanism $auth) { | |
| 102 | +			$authConfig = array_map(function(AuthMechanism $auth) { | |
| 103 | 103 | return $this->serializeAuthBackend($auth)['configuration']; | 
| 104 | 104 | }, $authBackends); | 
| 105 | 105 | $result['authentication_configuration'] = array_combine(array_keys($authBackends), $authConfig); | 
| @@ -112,10 +112,10 @@ discard block | ||
| 112 | 112 | * @return string[] | 
| 113 | 113 | */ | 
| 114 | 114 |  	private function formatConfiguration(array $parameters) { | 
| 115 | -		$configuration = array_filter($parameters, function (DefinitionParameter $parameter) { | |
| 115 | +		$configuration = array_filter($parameters, function(DefinitionParameter $parameter) { | |
| 116 | 116 | return $parameter->getType() !== DefinitionParameter::VALUE_HIDDEN; | 
| 117 | 117 | }); | 
| 118 | -		return array_map(function (DefinitionParameter $parameter) { | |
| 118 | +		return array_map(function(DefinitionParameter $parameter) { | |
| 119 | 119 | return $parameter->getTypeName(); | 
| 120 | 120 | }, $configuration); | 
| 121 | 121 | } |