<?php/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/namespaceSymfony\Component\Mime\Header;
/**
* A Simple MIME Header.
*
* @author Chris Corbyn
*/classUnstructuredHeaderextendsAbstractHeader{
privatestring$value;
publicfunction__construct(string$name, string$value)
{
parent::__construct($name);
$this->setValue($value);
}
/**
* @param string $body
*/publicfunctionsetBody(mixed$body): void{
$this->setValue($body);
}
publicfunctiongetBody(): string{
return$this->getValue();
}
/**
* Get the (unencoded) value of this header.
*/publicfunctiongetValue(): string{
return$this->value;
}
/**
* Set the (unencoded) value of this header.
*/publicfunctionsetValue(string$value): void{
$this->value = $value;
}
/**
* Get the value of this header prepared for rendering.
*/publicfunctiongetBodyAsString(): string{
return$this->encodeWords($this, $this->value);
}
}