From 75160b12821f7f4299cce7f0b69c83c1502ae071 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Mon, 27 May 2024 13:08:29 +0200 Subject: 2024-02-19 upstream --- vendor/web-token/jwt-core/AlgorithmManager.php | 190 ++++++++++++------------- 1 file changed, 95 insertions(+), 95 deletions(-) (limited to 'vendor/web-token/jwt-core/AlgorithmManager.php') diff --git a/vendor/web-token/jwt-core/AlgorithmManager.php b/vendor/web-token/jwt-core/AlgorithmManager.php index 88beee4..df558a4 100644 --- a/vendor/web-token/jwt-core/AlgorithmManager.php +++ b/vendor/web-token/jwt-core/AlgorithmManager.php @@ -1,95 +1,95 @@ -add($algorithm); - } - } - - /** - * This method creates an alogithm manager using the given algorithms. - * - * @deprecated Will be removed in v2.0. Please use constructor instead - * - * @param Algorithm[] $algorithms - * - * @return AlgorithmManager - */ - public static function create(array $algorithms): self - { - return new self($algorithms); - } - - /** - * Returns true if the algorithm is supported. - * - * @param string $algorithm The algorithm - */ - public function has(string $algorithm): bool - { - return \array_key_exists($algorithm, $this->algorithms); - } - - /** - * Returns the list of names of supported algorithms. - * - * @return string[] - */ - public function list(): array - { - return \array_keys($this->algorithms); - } - - /** - * Returns the algorithm if supported, otherwise throw an exception. - * - * @param string $algorithm The algorithm - */ - public function get(string $algorithm): Algorithm - { - if (!$this->has($algorithm)) { - throw new \InvalidArgumentException(\sprintf('The algorithm "%s" is not supported.', $algorithm)); - } - - return $this->algorithms[$algorithm]; - } - - /** - * Adds an algorithm to the manager. - * - * @return AlgorithmManager - */ - private function add(Algorithm $algorithm): self - { - $name = $algorithm->name(); - $this->algorithms[$name] = $algorithm; - - return $this; - } -} +add($algorithm); + } + } + + /** + * This method creates an alogithm manager using the given algorithms. + * + * @deprecated Will be removed in v2.0. Please use constructor instead + * + * @param Algorithm[] $algorithms + * + * @return AlgorithmManager + */ + public static function create(array $algorithms): self + { + return new self($algorithms); + } + + /** + * Returns true if the algorithm is supported. + * + * @param string $algorithm The algorithm + */ + public function has(string $algorithm): bool + { + return \array_key_exists($algorithm, $this->algorithms); + } + + /** + * Returns the list of names of supported algorithms. + * + * @return string[] + */ + public function list(): array + { + return \array_keys($this->algorithms); + } + + /** + * Returns the algorithm if supported, otherwise throw an exception. + * + * @param string $algorithm The algorithm + */ + public function get(string $algorithm): Algorithm + { + if (!$this->has($algorithm)) { + throw new \InvalidArgumentException(\sprintf('The algorithm "%s" is not supported.', $algorithm)); + } + + return $this->algorithms[$algorithm]; + } + + /** + * Adds an algorithm to the manager. + * + * @return AlgorithmManager + */ + private function add(Algorithm $algorithm): self + { + $name = $algorithm->name(); + $this->algorithms[$name] = $algorithm; + + return $this; + } +} -- cgit v1.2.3