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