• File: CheckForMaintenanceMode.php
  • Full Path: /var/www/imaliapi/app/Http/Middleware/CheckForMaintenanceMode.php
  • Date Modified: 04/15/2024 8:53 PM
  • File size: 352 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Http\Middleware;

use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;

class CheckForMaintenanceMode extends Middleware
{
    /**
     * The URIs that should be reachable while maintenance mode is enabled.
     *
     * @var array
     */
    protected $except = [
        //
    ];
}