From 3cc6df489f8e58d59b906270d03a82e0ceb353cf Mon Sep 17 00:00:00 2001 From: Diederik de Haas Date: Sat, 10 Nov 2012 00:45:49 +0100 Subject: [PATCH] Fixed new checkstyle issues in swift.php from build #1341. --- apps/files_external/lib/swift.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/swift.php b/apps/files_external/lib/swift.php index 9c9754ac34..45542aacbd 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'];