for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Jawaraegov\Workflows\Http\Middleware;
use Closure;
/**
* The WorkflowMiddleware class.
*
* @package Jawaraegov\Workflows
* @author Jawaraegov <[email protected]>
*/
class WorkflowMiddleware
{
* Handle an incoming request.
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
public function handle($request, Closure $next)
return $next($request);
}