• File: CheckForMaintenanceMode.php
  • Full Path: /var/www/imalipartnersapi/app/Http/Middleware/CheckForMaintenanceMode.php
  • Date Modified: 02/07/2023 8:01 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 = [
        //
    ];
}