1: <?php
2: /**
3: * Created by PhpStorm.
4: * User: manus
5: * Date: 10/5/16
6: * Time: 11:01
7: */
8:
9: namespace GLFramework\Mail;
10:
11:
12: abstract class MailSystem
13: {
14: protected $config = array();
15:
16: /**
17: * BaseMail constructor.
18: * @param array $config
19: */
20: public function __construct(array $config)
21: {
22: $this->config = $config;
23: }
24:
25: /**
26: * @return \Swift_Transport
27: */
28: public abstract function getTransport();
29:
30: }