-
-
Save xhidee/195913f4068f1a7befae to your computer and use it in GitHub Desktop.
newrelic patch for laravel5.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
class NewRelicPatch | |
{ | |
public function handle($request, Closure $next) | |
{ | |
$response = $next($request); | |
event('router.filter:after:newrelic-patch', [$request, $response], true); | |
return $response; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Route::macro('after', function ($callback) { | |
$this->events->listen('router.filter:after:newrelic-patch', $callback); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cheers!! Yet it´s valid ? I'm testing the patch, but it does not work.
I put this code and include 'newrelic-patch' how application route middleware.in Kernel.php in $routeMiddleware array and all my routes after the Route::macro(...);