BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
laravel
/
octane
/
src
/
Listeners
📤 Upload
📝 New File
📁 New Folder
Close
Editing: FlushQueuedCookies.php
<?php namespace Laravel\Octane\Listeners; class FlushQueuedCookies { /** * Handle the event. * * @param mixed $event */ public function handle($event): void { if (! $event->sandbox->resolved('cookie')) { return; } $event->sandbox->make('cookie')->flushQueuedCookies(); } }
Save
Cancel