summaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorDiederik de Haas <diederik@cknow.org>2012-11-10 00:45:49 +0100
committerDiederik de Haas <diederik@cknow.org>2012-11-10 00:45:49 +0100
commit3cc6df489f8e58d59b906270d03a82e0ceb353cf (patch)
tree23af1217c7cad8e84acce20cfbb4258ca0cb8f3b /apps/files_external
parent051635412d68af786026a386a0ebf494127247c7 (diff)
downloadnextcloud-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.php4
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'];