Home
last modified time | relevance | path

Searched refs:allowedMethods (Results 1 – 2 of 2) sorted by relevance

/template/twigstarter/vendor/twig/twig/src/Sandbox/
DSecurityPolicy.php26 private $allowedMethods; variable in Twig\\Sandbox\\SecurityPolicy
30 …onstruct(array $allowedTags = [], array $allowedFilters = [], array $allowedMethods = [], array $a… argument
34 $this->setAllowedMethods($allowedMethods);
51 $this->allowedMethods = [];
53 …$this->allowedMethods[$class] = array_map(function ($value) { return strtr($value, 'ABCDEFGHIJKLMN…
96 foreach ($this->allowedMethods as $class => $methods) {
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DCustomWebDriverCommand.php63 $allowedMethods = [static::METHOD_GET, static::METHOD_POST];
64 if (!in_array($custom_method, $allowedMethods, true)) {
69 implode(', ', $allowedMethods)