| @@ -75,7 +75,7 @@ | ||
| 75 | 75 |  			} elseif ($file->isMounted()) { | 
| 76 | 76 |  				$icon = \OC::$server->getMimeTypeDetector()->mimeTypeIcon('dir-external'); | 
| 77 | 77 | } | 
| 78 | -		}else{ | |
| 78 | +		} else{ | |
| 79 | 79 | $icon = \OC::$server->getMimeTypeDetector()->mimeTypeIcon($file->getMimetype()); | 
| 80 | 80 | } | 
| 81 | 81 | |
| @@ -93,8 +93,7 @@ | ||
| 93 | 93 |  	public function unlink($path) { | 
| 94 | 94 |  		if ($this->is_dir($path)) { | 
| 95 | 95 | return $this->rmdir($path); | 
| 96 | - } | |
| 97 | -		else { | |
| 96 | +		} else { | |
| 98 | 97 | $url = $this->constructUrl($path); | 
| 99 | 98 | $result = unlink($url); | 
| 100 | 99 | clearstatcache(true, $url); | 
| @@ -119,8 +119,9 @@ | ||
| 119 | 119 | |
| 120 | 120 | // Only handling xml | 
| 121 | 121 |  		$contentType = $request->getHeader('Content-Type'); | 
| 122 | - if (strpos($contentType, 'application/xml') === false && strpos($contentType, 'text/xml') === false) | |
| 123 | - return; | |
| 122 | +		if (strpos($contentType, 'application/xml') === false && strpos($contentType, 'text/xml') === false) { | |
| 123 | + return; | |
| 124 | + } | |
| 124 | 125 | |
| 125 | 126 | // Making sure the node exists | 
| 126 | 127 |  		try { | 
| @@ -245,7 +245,9 @@ | ||
| 245 | 245 |  	function httpGet(RequestInterface $request, ResponseInterface $response) { | 
| 246 | 246 | // Only handle valid files | 
| 247 | 247 | $node = $this->tree->getNodeForPath($request->getPath()); | 
| 248 | - if (!($node instanceof IFile)) return; | |
| 248 | +		if (!($node instanceof IFile)) { | |
| 249 | + return; | |
| 250 | + } | |
| 249 | 251 | |
| 250 | 252 | // adds a 'Content-Disposition: attachment' header in case no disposition | 
| 251 | 253 | // header has been set before | 
| @@ -38,7 +38,9 @@ | ||
| 38 | 38 |  	public function getCurrentUserPrincipals() { | 
| 39 | 39 | $principalV2 = $this->getCurrentUserPrincipal(); | 
| 40 | 40 | |
| 41 | - if (is_null($principalV2)) return []; | |
| 41 | +		if (is_null($principalV2)) { | |
| 42 | + return []; | |
| 43 | + } | |
| 42 | 44 | |
| 43 | 45 | $principalV1 = $this->convertPrincipal($principalV2, false); | 
| 44 | 46 | return array_merge( | 
| @@ -745,7 +745,9 @@ | ||
| 745 | 745 | $stmt->execute([ $addressBookId ]); | 
| 746 | 746 | $currentToken = $stmt->fetchColumn(0); | 
| 747 | 747 | |
| 748 | - if (is_null($currentToken)) return null; | |
| 748 | +		if (is_null($currentToken)) { | |
| 749 | + return null; | |
| 750 | + } | |
| 749 | 751 | |
| 750 | 752 | $result = [ | 
| 751 | 753 | 'syncToken' => $currentToken, | 
| @@ -134,7 +134,7 @@ | ||
| 134 | 134 | } | 
| 135 | 135 |  				if(is_dir($source.'/'.$file)) { | 
| 136 | 136 | $this->addRecursive($path.'/'.$file, $source.'/'.$file); | 
| 137 | -				}else{ | |
| 137 | +				} else{ | |
| 138 | 138 | $this->addFile($path.'/'.$file, $source.'/'.$file); | 
| 139 | 139 | } | 
| 140 | 140 | } | 
| @@ -61,7 +61,7 @@ | ||
| 61 | 61 | parent::__construct( 'core', 'layout.user' ); | 
| 62 | 62 |  			if(in_array(\OC_App::getCurrentApp(), ['settings','admin', 'help']) !== false) { | 
| 63 | 63 |  				$this->assign('bodyid', 'body-settings'); | 
| 64 | -			}else{ | |
| 64 | +			} else{ | |
| 65 | 65 |  				$this->assign('bodyid', 'body-user'); | 
| 66 | 66 | } | 
| 67 | 67 | |
| @@ -271,8 +271,9 @@ | ||
| 271 | 271 | } | 
| 272 | 272 |  		foreach ($dirs as $dir) { | 
| 273 | 273 |  			foreach ($exts as $ext) { | 
| 274 | -				if ($check_fn("$dir/$name" . $ext)) | |
| 275 | - return true; | |
| 274 | +				if ($check_fn("$dir/$name" . $ext)) { | |
| 275 | + return true; | |
| 276 | + } | |
| 276 | 277 | } | 
| 277 | 278 | } | 
| 278 | 279 | return false; |