Factory.php 264B

123456789101112131415
  1. <?php
  2. namespace Illuminate\Contracts\Filesystem;
  3. interface Factory
  4. {
  5. /**
  6. * Get a filesystem implementation.
  7. *
  8. * @param string $name
  9. * @return \Illuminate\Contracts\Filesystem\Filesystem
  10. */
  11. public function disk($name = null);
  12. }