blob: 86bea26a7c35ab75ba00e449fa42ea19e29cf7de [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Filesystem;
4
5interface Cloud extends Filesystem
6{
7 /**
8 * Get the URL for the file at the given path.
9 *
10 * @param string $path
11 * @return string
12 */
13 public function url($path);
14}