You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
345B

  1. <?php
  2. namespace Framework\Filesystem\Driver;
  3. use League\Flysystem\Filesystem;
  4. use League\Flysystem\Local\LocalFilesystemAdapter;
  5. class LocalDriver extends Driver
  6. {
  7. protected function connect(array $config): Filesystem
  8. {
  9. $adapter = new LocalFilesystemAdapter($config['path']);
  10. return new Filesystem($adapter);
  11. }
  12. }

Powered by TurnKey Linux.