Sulu\Bundle\ContactBundle\Controller\ContactTitleController::cgetAction PHP Метод

cgetAction() публичный Метод

lists all contact titles optional parameter 'flat' calls listAction.
public cgetAction ( ) : Response
Результат Symfony\Component\HttpFoundation\Response
    public function cgetAction()
    {
        $list = new CollectionRepresentation($this->getDoctrine()->getRepository(self::$entityName)->findBy([], ['title' => 'ASC']), self::$entityKey);
        $view = $this->view($list, 200);
        return $this->handleView($view);
    }