Exemplo n.º 1
0
 public function getClients()
 {
     $clients = $this->db->getClients();
     $response = new Response();
     $response->setBody($this->templateManager->render('clients', array('clients' => $clients)));
     return $response;
 }