Create EmailService template
This commit is contained in:
19
app/CachetHq/Cachet/Service/EmailService.php
Normal file
19
app/CachetHq/Cachet/Service/EmailService.php
Normal 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) {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -6,5 +6,4 @@ interface ServiceInterface {
|
||||
public function register();
|
||||
public function unregister();
|
||||
public function fire($data);
|
||||
public function getService($type);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user