diff options
author | Diederik de Haas <diederik@cknow.org> | 2012-11-10 00:45:49 +0100 |
---|---|---|
committer | Diederik de Haas <diederik@cknow.org> | 2012-11-10 00:45:49 +0100 |
commit | 3cc6df489f8e58d59b906270d03a82e0ceb353cf (patch) | |
tree | 23af1217c7cad8e84acce20cfbb4258ca0cb8f3b /apps/files_external | |
parent | 051635412d68af786026a386a0ebf494127247c7 (diff) | |
download | nextcloud-server-3cc6df489f8e58d59b906270d03a82e0ceb353cf.tar.gz nextcloud-server-3cc6df489f8e58d59b906270d03a82e0ceb353cf.zip |
Fixed new checkstyle issues in swift.php from build #1341.
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/lib/swift.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 9c9754ac346..45542aacbd3 100644 --- a/apps/files_external/lib/swift.php +++ b/apps/files_external/lib/swift.php @@ -271,8 +271,8 @@ class OC_FileStorage_SWIFT extends OC_Filestorage_Common{ $this->host=$params['host']; $this->user=$params['user']; $this->root=isset($params['root'])?$params['root']:'/'; - if(isset($params['secure'])){ - if(is_string($params['secure'])){ + if(isset($params['secure'])) { + if(is_string($params['secure'])) { $this->secure = ($params['secure'] === 'true'); }else{ $this->secure = (bool)$params['secure']; |