Skip to content

Instantly share code, notes, and snippets.

@nasrulhazim
Last active April 13, 2020 20:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nasrulhazim/651b892df094ee1c3755e0face96cb41 to your computer and use it in GitHub Desktop.
Save nasrulhazim/651b892df094ee1c3755e0face96cb41 to your computer and use it in GitHub Desktop.
Learn Unit Test Middleware
<?php
namespace App\Http\Middleware;
use Closure;
class LearnUnitTestMiddleware
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$request->merge(['learn' => true]);
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment