![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/vendor/zbateson/mail-mime-parser/src/Header/Consumer/ |
<?php /** * This file is part of the ZBateson\MailMimeParser project. * * @license http://opensource.org/licenses/bsd-license.php BSD */ namespace ZBateson\MailMimeParser\Header\Consumer; /** * Parses a single ID from an ID header. Begins consuming on a '<' char, and * ends on a '>' char. * * @author Zaahid Bateson */ class IdConsumer extends GenericConsumer { /** * Overridden to return patterns matching the beginning part of an ID ('<' * and '>' chars). * * @return string[] the patterns */ public function getTokenSeparators() : array { return ['\s+', '<', '>']; } /** * Returns true for '>'. */ protected function isEndToken(string $token) : bool { return ($token === '>'); } /** * Returns true for '<'. */ protected function isStartToken(string $token) : bool { return ($token === '<'); } /** * Returns null for whitespace, and LiteralPart for anything else. * * @param string $token the token * @param bool $isLiteral set to true if the token represents a literal - * e.g. an escaped token * @return \ZBateson\MailMimeParser\Header\IHeaderPart|null the constructed * header part or null if the token should be ignored */ protected function getPartForToken(string $token, bool $isLiteral) { if (\preg_match('/^\s+$/', $token)) { return null; } return $this->partFactory->newLiteralPart($token); } }