Fixed new checkstyle issues in ftp.php from build #1341.
This commit is contained in:
parent
3cc6df489f
commit
6e6df6e410
|
@ -19,8 +19,8 @@ class OC_FileStorage_FTP extends OC_FileStorage_StreamWrapper{
|
|||
$this->host=$params['host'];
|
||||
$this->user=$params['user'];
|
||||
$this->password=$params['password'];
|
||||
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'];
|
||||
|
|
Loading…
Reference in New Issue