<?php
namespace Komma\KMS\OPcache;
use Illuminate\Support\Facades\Route;
final class OPcacheRoutes
{
public static function kms(){
Route::get('opcache/clear', OPcacheController::class.'@clearOPcache')->name('clearOPcache');
}
}