App\services\PluginManager::__construct PHP Method

__construct() public method

public __construct ( Illuminate\Contracts\Foundation\Application $app, OptionRepository $option, Illuminate\Contracts\Events\Dispatcher $dispatcher, Illuminate\Filesystem\Filesystem $filesystem )
$app Illuminate\Contracts\Foundation\Application
$option App\Services\Repositories\OptionRepository
$dispatcher Illuminate\Contracts\Events\Dispatcher
$filesystem Illuminate\Filesystem\Filesystem
    public function __construct(Application $app, OptionRepository $option, Dispatcher $dispatcher, Filesystem $filesystem)
    {
        $this->app = $app;
        $this->option = $option;
        $this->dispatcher = $dispatcher;
        $this->filesystem = $filesystem;
    }