Cloud.php 247B

123456789101112131415
  1. <?php
  2. namespace Illuminate\Contracts\Filesystem;
  3. interface Cloud extends Filesystem
  4. {
  5. /**
  6. * Get the URL for the file at the given path.
  7. *
  8. * @param string $path
  9. * @return string
  10. */
  11. public function url($path);
  12. }