vendor/symfony/mime/Header/UnstructuredHeader.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\Header;
  11. /**
  12.  * A Simple MIME Header.
  13.  *
  14.  * @author Chris Corbyn
  15.  */
  16. class UnstructuredHeader extends AbstractHeader
  17. {
  18.     private string $value;
  19.     public function __construct(string $namestring $value)
  20.     {
  21.         parent::__construct($name);
  22.         $this->setValue($value);
  23.     }
  24.     /**
  25.      * @param string $body
  26.      */
  27.     public function setBody(mixed $body)
  28.     {
  29.         $this->setValue($body);
  30.     }
  31.     public function getBody(): string
  32.     {
  33.         return $this->getValue();
  34.     }
  35.     /**
  36.      * Get the (unencoded) value of this header.
  37.      */
  38.     public function getValue(): string
  39.     {
  40.         return $this->value;
  41.     }
  42.     /**
  43.      * Set the (unencoded) value of this header.
  44.      */
  45.     public function setValue(string $value)
  46.     {
  47.         $this->value $value;
  48.     }
  49.     /**
  50.      * Get the value of this header prepared for rendering.
  51.      */
  52.     public function getBodyAsString(): string
  53.     {
  54.         return $this->encodeWords($this$this->value);
  55.     }
  56. }