mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 00:43:39 +08:00
18 lines
301 B
Plaintext
18 lines
301 B
Plaintext
|
<?php
|
||
|
|
||
|
namespace Illuminate\Filesystem;
|
||
|
|
||
|
class FilesystemManager
|
||
|
{
|
||
|
/**
|
||
|
* Create a new filesystem manager instance.
|
||
|
*
|
||
|
* @param \Illuminate\Contracts\Container\Container $app
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct($app)
|
||
|
{
|
||
|
$this->app = $app;
|
||
|
}
|
||
|
}
|