mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-28 23:39:24 +02:00
cs Mediator
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user