Create ServiceInterface

This commit is contained in:
James Brooks
2014-12-01 16:28:37 +00:00
parent e3310c03ad
commit 12115f74bc

View File

@@ -0,0 +1,10 @@
<?php
namespace CachetHQ\Cachet\Service;
interface ServiceInterface {
public function register();
public function unregister();
public function fire($data);
public function getService($type);
}