11 lines
173 B
PHP
11 lines
173 B
PHP
<?php
|
|
|
|
namespace CachetHQ\Cachet\Service;
|
|
|
|
interface ServiceInterface
|
|
{
|
|
public function register();
|
|
public function unregister();
|
|
public function fire($data);
|
|
}
|