Skip to content

Instantly share code, notes, and snippets.

View juan55860's full-sized avatar
🎯
Focusing

Juan Camilo Varela López juan55860

🎯
Focusing
  • Mobility Solutions
  • Manizales, Colombia
View GitHub Profile
@migrs
migrs / Kernel.php
Last active April 9, 2017 20:46
newrelic patch for laravel5.2
<?php namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
protected $middleware = [
\App\Http\Middleware\NewRelicPatch::class,
//... your other middlewares
];