1 | <?php |
||
8 | class IpWhitelist |
||
9 | { |
||
10 | /** |
||
11 | * Create a new filter instance. |
||
12 | */ |
||
13 | public function __construct() |
||
16 | |||
17 | protected function isWhitelisted($ip) |
||
37 | |||
38 | /** |
||
39 | * Handle an incoming request. |
||
40 | * |
||
41 | * @param \Illuminate\Http\Request $request |
||
42 | * @param \Closure $next |
||
43 | * |
||
44 | * @return mixed |
||
45 | */ |
||
46 | public function handle($request, Closure $next) |
||
54 | } |
||
55 |