Fixed new checkstyle issues in swift.php from build #1341.

This commit is contained in:
Diederik de Haas 2012-11-10 00:45:49 +01:00
parent 051635412d
commit 3cc6df489f
1 changed files with 2 additions and 2 deletions

View File

@ -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'];