database = $db; $this->server = $srv; $this->client = $cl; } /** * make request */ public function makeRequest() { $this->server->process(); } /** * query db * @return mixed */ public function queryDb() { return $this->database->getData(); } /** * send response * * @param string $content */ public function sendResponse($content) { $this->client->output($content); } }