FtpdManualRecursionIntegrationTests.php 557 B

1234567891011121314151617181920212223242526
  1. <?php
  2. use League\Flysystem\Adapter\Ftpd;
  3. use League\Flysystem\AdapterInterface;
  4. include_once __DIR__ . '/FtpIntegrationTestCase.php';
  5. /**
  6. * @group integration
  7. */
  8. class FtpdManualRecursionIntegrationTests extends FtpIntegrationTestCase
  9. {
  10. /**
  11. * @return AdapterInterface
  12. */
  13. protected static function setup_adapter()
  14. {
  15. return new Ftpd([
  16. 'host' => 'localhost',
  17. 'username' => 'foo',
  18. 'password' => 'pass',
  19. 'port' => 2122,
  20. 'recurseManually' => true,
  21. ]);
  22. }
  23. }