hypothetical/app/Http/Middleware/TrustHosts.php

21 lines
379 B
PHP
Raw Normal View History

2020-07-23 16:12:26 -04:00
<?php
namespace App\Http\Middleware;
use Illuminate\Http\Middleware\TrustHosts as Middleware;
class TrustHosts extends Middleware
{
/**
* Get the host patterns that should be trusted.
*
2022-05-23 21:01:33 -04:00
* @return array<int, string|null>
2020-07-23 16:12:26 -04:00
*/
2023-03-13 17:33:19 -04:00
public function hosts(): array
2020-07-23 16:12:26 -04:00
{
return [
$this->allSubdomainsOfApplicationUrl(),
];
}
}