Edit File: GiveNewApplicationInstanceToFilesystemManager.php
<?php namespace Laravel\Octane\Listeners; class GiveNewApplicationInstanceToFilesystemManager { /** * Handle the event. * * @param mixed $event * @return void */ public function handle($event): void { if (! $event->sandbox->resolved('filesystem')) { return; } with($event->sandbox->make('filesystem'), function ($manager) use ($event) { $manager->setApplication($event->sandbox); }); } }
Back to File Manager