Removed unused code

This commit is contained in:
Graham Campbell
2015-01-01 17:37:52 +00:00
parent 15cbb112eb
commit 843268e645
2 changed files with 0 additions and 33 deletions

View File

@@ -1,23 +0,0 @@
<?php
namespace CachetHQ\Cachet\Service\Email;
class EmailService implements ServiceInterface
{
protected $properties;
public function register()
{
//
}
public function unregister()
{
//
}
public function fire($data)
{
//
}
}

View File

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