Files
pancake/system/vendor/illuminate/contracts/Filesystem/Factory.php
Tim Bendt 6b9ef7ca55 first
2025-11-25 00:16:35 -05:00

15 lines
269 B
PHP
Executable File

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