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