public static function validate(string $protocol) : void { if (!array_key_exists($protocol, self::PROTOCOLS)) { throw new UnexpectedValueException('Unknown protocol: ' . $protocol); } }