vendor/symfony/mime/RawMessage.php line 19

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Mime;
  11. use Symfony\Component\Mime\Exception\LogicException;
  12. /**
  13.  * @author Fabien Potencier <fabien@symfony.com>
  14.  */
  15. class RawMessage
  16. {
  17.     private $message;
  18.     public function __construct(iterable|string $message)
  19.     {
  20.         $this->message $message;
  21.     }
  22.     public function toString(): string
  23.     {
  24.         if (\is_string($this->message)) {
  25.             return $this->message;
  26.         }
  27.         if ($this->message instanceof \Traversable) {
  28.             $this->message iterator_to_array($this->messagefalse);
  29.         }
  30.         return $this->message implode(''$this->message);
  31.     }
  32.     public function toIterable(): iterable
  33.     {
  34.         if (\is_string($this->message)) {
  35.             yield $this->message;
  36.             return;
  37.         }
  38.         $message '';
  39.         foreach ($this->message as $chunk) {
  40.             $message .= $chunk;
  41.             yield $chunk;
  42.         }
  43.         $this->message $message;
  44.     }
  45.     /**
  46.      * @throws LogicException if the message is not valid
  47.      */
  48.     public function ensureValidity()
  49.     {
  50.     }
  51.     public function __serialize(): array
  52.     {
  53.         return [$this->toString()];
  54.     }
  55.     public function __unserialize(array $data): void
  56.     {
  57.         [$this->message] = $data;
  58.     }
  59. }