* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ declare(strict_types=1); namespace ApiPlatform\Util; use Symfony\Component\HttpFoundation\Request; /** * CORS utils. * * To be removed when https://github.com/symfony/symfony/pull/34391 wil be merged. * * @internal * * @author Kévin Dunglas */ trait CorsTrait { public function isPreflightRequest(Request $request): bool { return $request->isMethod('OPTIONS') && $request->headers->has('Access-Control-Request-Method'); } } class_alias(CorsTrait::class, \ApiPlatform\Core\Util\CorsTrait::class);