14 lines
244 B
PHP
14 lines
244 B
PHP
|
<?php namespace Illuminate\Contracts\Filesystem;
|
||
|
|
||
|
interface Factory {
|
||
|
|
||
|
/**
|
||
|
* Get a filesystem implementation.
|
||
|
*
|
||
|
* @param string $name
|
||
|
* @return \Illuminate\Contracts\Filesystem\Filesystem
|
||
|
*/
|
||
|
public function disk($name = null);
|
||
|
|
||
|
}
|