Exemplo n.º 1
0
 /**
  * Constructs a Message.
  * 
  * @param HeaderFactory $headerFactory
  */
 public function __construct(HeaderFactory $headerFactory)
 {
     parent::__construct($headerFactory);
     $this->objectId = uniqid();
 }
Exemplo n.º 2
0
 /**
  * Sets up a default Content-Type header of text/plain.
  * 
  * @param HeaderFactory $headerFactory
  */
 public function __construct(HeaderFactory $headerFactory)
 {
     parent::__construct($headerFactory);
     $this->setRawHeader('Content-Type', 'text/plain');
 }