/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/Request/HttpMethodMap.php
68 строк
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2018 Adobe * All Rights Reserved. */ declare(strict_types=1); namespace Magento\Framework\App\Request; /** * Map of HTTP methods and interfaces that an action implements in order to process them. */ class HttpMethodMap { /** * @var string[] */ private $map; /** * @param string[] $map */ public function __construct(array $map) { $this->map = $this->processMap($map); } /** * Filter given map. * * @param array $map * @throws \InvalidArgumentException * * @return string[] */ private function processMap(array $map): array { $filtered = []; foreach ($map as $method => $interface) { $interface = trim(preg_replace('/^\\\+/', '', $interface)); if (!(interface_exists($interface) || class_exists($interface))) { throw new \InvalidArgumentException( "Interface '$interface' does not exist" ); } if (!$method) { throw new \InvalidArgumentException('Invalid method given'); } $filtered[$method] = $interface; } return $filtered; } /** * Where keys are methods' names and values are interfaces' names. * * @return string[] * * @see \Laminas\Http\Request Has list of methods as METHOD_* constants. */ public function getMap(): array { return $this->map; } }