Skip to content

Instantly share code, notes, and snippets.

@n1ru4l
Created July 31, 2017 13:27
Show Gist options
  • Save n1ru4l/414fc0a623af0ffdf96b5953c9c6e851 to your computer and use it in GitHub Desktop.
Save n1ru4l/414fc0a623af0ffdf96b5953c9c6e851 to your computer and use it in GitHub Desktop.
Laravel realpath_cache clearing
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Event;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array
*/
protected $listen = [
'App\Events\SomeEvent' => [
'App\Listeners\EventListener',
],
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
parent::boot();
Event::listen('cache:clearing', function () {
clearstatcache(true);
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment