Files
cachet-docker/app/CachetHq/Cachet/Service/ServiceInterface.php
2014-12-01 16:28:37 +00:00

11 lines
212 B
PHP

<?php
namespace CachetHQ\Cachet\Service;
interface ServiceInterface {
public function register();
public function unregister();
public function fire($data);
public function getService($type);
}