Cloud.php
TLDR
The provided file is an interface named Cloud
located in the Illuminate\Contracts\Filesystem
namespace. It extends the Filesystem
interface and describes a method url
to get the URL for a file.
Methods
url
This method retrieves the URL for the file at the given path.
Classes
None
<?php
namespace Illuminate\Contracts\Filesystem;
interface Cloud extends Filesystem
{
/**
* Get the URL for the file at the given path.
*
* @param string $path
* @return string
*/
public function url($path);
}