 ad01e15e5a
			
		
	
	
	
	
	ad01e15e5a--------- Co-authored-by: codacy-production[bot] <61871480+codacy-production[bot]@users.noreply.github.com>
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			350 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			350 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Middleware;
 | |
| 
 | |
| use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
 | |
| 
 | |
| class PreventRequestsDuringMaintenance extends Middleware
 | |
| {
 | |
|     /**
 | |
|      * The URIs that should be reachable while maintenance mode is enabled.
 | |
|      *
 | |
|      * @var array<int, string>
 | |
|      */
 | |
|     protected $except = [];
 | |
| }
 |