SftpTest.php 283 B

123456789101112131415
  1. <?php
  2. namespace Gaufrette\Functional\Adapter;
  3. class SftpTest extends FunctionalTestCase
  4. {
  5. public function setUp()
  6. {
  7. if (!extension_loaded('ssh2')) {
  8. $this->markTestSkipped('Extension ssh2 not loaded');
  9. }
  10. return parent::setUp();
  11. }
  12. }