cs Mediator

This commit is contained in:
Dominik Liebler
2013-09-13 14:36:29 +02:00
parent 69aa0ae5b5
commit 4b66417509
5 changed files with 36 additions and 10 deletions

View File

@@ -13,15 +13,15 @@ interface MediatorInterface
*
* @param string $content
*/
function sendResponse($content);
public function sendResponse($content);
/**
* makes a request
*/
function makeRequest();
public function makeRequest();
/**
* queries the DB
*/
function queryDb();
public function queryDb();
}