1 <?php
2 /* --------------------------------------------------------------
3 EmailDeleterInterface.inc.php 2015-01-29 gm
4 Gambio GmbH
5 http://www.gambio.de
6 Copyright (c) 2015 Gambio GmbH
7 Released under the GNU General Public License (Version 2)
8 [http://www.gnu.org/licenses/gpl-2.0.html]
9 --------------------------------------------------------------
10 */
11
12 /**
13 * Interface EmailDeleterInterface
14 *
15 * @category System
16 * @package Email
17 * @subpackage Interfaces
18 */
19 interface EmailDeleterInterface
20 {
21 /**
22 * Removes a record from the database.
23 *
24 * This method will delete all the email relevant entities from the database. It will
25 * not throw an exception if the given record is not found.
26 *
27 * @param EmailInterface $email E-Mail.
28 */
29 public function delete(EmailInterface $email);
30 }