add services + more structural additions

This commit is contained in:
Antonio Ramirez
2016-12-04 13:37:15 +01:00
parent 36ffbd83da
commit 3e16d24048
9 changed files with 417 additions and 5 deletions

View File

@ -0,0 +1,18 @@
<?php
namespace Da\User\Contracts;
/**
*
* ServiceInterface.php
*
* Date: 4/12/16
* Time: 2:56
* @author Antonio Ramirez <hola@2amigos.us>
*/
interface ServiceInterface
{
/**
* @return void
*/
public function run();
}