1
0
mirror of https://github.com/flarum/core.git synced 2025-07-15 22:06:24 +02:00
Files
php-flarum/php-packages/phpstan/stubs/Illuminate/Filesystem/FilesystemManager.stub
2022-09-14 15:23:56 +01:00

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;
}
}