| 1 | <?php |
||
| 16 | class RequestsMonitorMiddleware |
||
| 17 | { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Whenever the request doesn't have an Authorization header (token) |
||
| 21 | * it must have a an visitor-id header. |
||
| 22 | * |
||
| 23 | * @param \Illuminate\Http\Request $request |
||
| 24 | * @param \Closure $next |
||
| 25 | * |
||
| 26 | * @return mixed |
||
| 27 | */ |
||
| 28 | public function handle(Request $request, Closure $next) |
||
| 60 | } |
||
| 61 |