Create EmailService template

This commit is contained in:
James Brooks 2014-12-01 16:30:49 +00:00
parent 12115f74bc
commit 84c2bc9b61
2 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,19 @@
<?php
namespace CachetHQ\Cachet\Service\Email;
class EmailService implements ServiceInterface {
protected $properties;
public function register() {
}
public function unregister() {
}
public function fire($data) {
}
}

View File

@ -6,5 +6,4 @@ interface ServiceInterface {
public function register();
public function unregister();
public function fire($data);
public function getService($type);
}