Skip to content

Commit

Permalink
Apply fixes from StyleCI (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
helios-ag authored Oct 10, 2018
1 parent 6520701 commit f68418b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Configuration/ElFinderConfigurationReader.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,13 @@ private function configureFlysystem($opt, $adapter, $serviceName)
break;
case 'sftp':
$settings = array(
'host' => $opt['sftp']['host'],
'port' => $opt['sftp']['port'],
'username' => $opt['sftp']['username'],
'password' => $opt['sftp']['password'],
'host' => $opt['sftp']['host'],
'port' => $opt['sftp']['port'],
'username' => $opt['sftp']['username'],
'password' => $opt['sftp']['password'],
'privateKey' => $opt['sftp']['privateKey'],
'root' => $opt['sftp']['root'],
'timeout' => $opt['sftp']['timeout'],
'root' => $opt['sftp']['root'],
'timeout' => $opt['sftp']['timeout'],
);
$filesystem = new Filesystem(new SftpAdapter($settings));

Expand Down

0 comments on commit f68418b

Please sign in to comment.