Beispiel #1
0
 /**
  * @depends testInstantiable
  * @expectedException RuntimeException
  */
 public function testPassiveFailSsl()
 {
     $adapter = new Ftp(['host' => 'pasv.fail', 'ssl' => true, 'root' => 'somewhere']);
     $adapter->connect();
 }
Beispiel #2
0
 /**
  * (non-PHPdoc)
  * @see \League\Flysystem\Adapter\Ftp::connect()
  */
 public function connect()
 {
     @parent::connect();
 }