Exemple #1
0
 /**
  * Create a new message instance.
  *
  * @param  \Swift_Message  $swift
  * @return void
  */
 public function __construct(Swift_Message $swift, ViewFactory $viewFactory, Filesystem $filesystem, Translator $translator)
 {
     parent::__construct($swift);
     $this->viewFactory = $viewFactory;
     $this->filesystem = $filesystem;
     $this->translator = $translator;
     $this->data = [];
 }