mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 13:28:18 +01:00
c29364dfcf
f3242bfadc
[CodeQuality] Handle crash inside block statement with unreachable statement on OptionalParametersAfterRequiredRector (#6640)
15 lines
266 B
PHP
15 lines
266 B
PHP
<?php
|
|
|
|
namespace RectorPrefix202501\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);
|
|
}
|