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