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