| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | class TrackingMiddleware |
||
| 37 | { |
||
| 38 | /** |
||
| 39 | * Get the path the user should be redirected to when they are not authenticated. |
||
| 40 | * |
||
| 41 | * @param \Illuminate\Http\Request $request The incoming request |
||
| 42 | * @param Closure $next The next Middleware to execute. |
||
| 43 | * |
||
| 44 | * @return mixed |
||
| 45 | */ |
||
| 46 | 18 | public function handle($request, Closure $next) |
|
| 53 |