Created
March 17, 2017 16:27
-
-
Save FabianWesner/d3a6044d313629c12a2ff558b9814a7f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Spryker\Zed\Mail\Business; | |
| class MailBusinessFactory extends AbstractBusinessFactory | |
| { | |
| /** | |
| * @return \Spryker\Zed\Mail\Business\Model\Mailer\MailHandlerInterface | |
| */ | |
| public function createMailHandler() | |
| { | |
| return new MailHandler( | |
| $this->createMailBuilder(), | |
| $this->getMailTypeCollection(), | |
| $this->getMailProviderCollection() | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment