blob: d0f9cd2bbfaee244b83c89424d096bdc3e705978 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Filesystem;
4
5interface Factory
6{
7 /**
8 * Get a filesystem implementation.
9 *
10 * @param string|null $name
11 * @return \Illuminate\Contracts\Filesystem\Filesystem
12 */
13 public function disk($name = null);
14}