Bugfix with visibility in GenericOutput. Bugfix in MailOutput.

This commit is contained in:
Markus Birth 2016-08-04 18:13:06 +02:00
parent f5d4cbb385
commit 16ab03786d
2 changed files with 2 additions and 2 deletions

View File

@ -4,12 +4,12 @@ namespace Frs\Output;
class GenericOutput implements OutputInterface
{
private $transport;
private $templatesPath;
private $partialsPath;
private $templateEngine;
private $template;
private $templateVars = array();
protected $transport;
/**
* Creates new output object for generic output.

View File

@ -88,6 +88,6 @@ class MailOutput extends GenericOutput
$this->transport->setSubject($this->subject);
$this->transport->setHeaders($this->headers);
$this->transport->setContent($mailbody);
return $this->transport->send();
return $this->transport->transmit();
}
}