Update methods names

This commit is contained in:
osaajani 2019-11-04 17:12:52 +01:00
parent 37b2a93323
commit 1865072b73
26 changed files with 88 additions and 101 deletions

View file

@ -42,7 +42,7 @@ namespace controllers\publics;
{
$page = (int) $page;
$limit = 25;
$sendeds = $this->internal_sended->get_list($limit, $page);
$sendeds = $this->internal_sended->list($limit, $page);
$this->render('sended/list', ['sendeds' => $sendeds, 'page' => $page, 'limit' => $limit, 'nb_results' => \count($sendeds)]);
}