Your IP : 216.73.217.154


Current Path : /var/www/html/bookstack/app/Http/Middleware/
Upload File :
Current File : //var/www/html/bookstack/app/Http/Middleware/TrustHosts.php

<?php

namespace BookStack\Http\Middleware;

use Illuminate\Http\Middleware\TrustHosts as Middleware;

class TrustHosts extends Middleware
{
    /**
     * Get the host patterns that should be trusted.
     *
     * @return array
     */
    public function hosts()
    {
        return [
            $this->allSubdomainsOfApplicationUrl(),
        ];
    }
}