20 lines
253 B
PHP
20 lines
253 B
PHP
<?php
|
|
|
|
namespace CachetHQ\Cachet\Service\Email;
|
|
|
|
class EmailService implements ServiceInterface {
|
|
protected $properties;
|
|
|
|
public function register() {
|
|
|
|
}
|
|
|
|
public function unregister() {
|
|
|
|
}
|
|
|
|
public function fire($data) {
|
|
|
|
}
|
|
}
|