forked from jmwamser/WhiteOctoberSwiftMailerDBBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAbstractEmail.php
45 lines (36 loc) · 847 Bytes
/
AbstractEmail.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
use WhiteOctober\SwiftMailerDBBundle\EmailInterface;
/**
*
* @Author: jwamser
* @CreateAt: 5/30/18 12:36 PM
* Project: WhiteOctoberSwiftMailerDBBundle
* File Name: AbstractEmail.php
*/
abstract class AbstractEmail implements EmailInterface
{
/**
* @return string
*/
abstract public function getMessage();
/**
* @return string
*/
abstract public function getStatus();
/**
* @return string
*/
abstract public function getEnvironment();
/**
* @param $message string Serialized \Swift_Mime_SimpleMessage
*/
abstract public function setMessage($message);
/**
* @param $status string
*/
abstract public function setStatus($status);
/**
* @param $environment string
*/
abstract public function setEnvironment($environment);
}