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