Bugfix with visibility in GenericOutput. Bugfix in MailOutput.
This commit is contained in:
parent
f5d4cbb385
commit
16ab03786d
@ -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.
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user