Edit File: FlushArrayCache.php
<?php namespace Laravel\Octane\Listeners; class FlushArrayCache { /** * Handle the event. * * @param mixed $event * @return void */ public function handle($event): void { if (config('cache.stores.array')) { $event->sandbox->make('cache')->store('array')->flush(); } } }
Back to File Manager