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.

Cloud.php 247B

1234567891011121314
  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. }