remove print_r

This commit is contained in:
Ibnu Maksum
2024-03-26 15:46:45 +07:00
parent 0767c6ab23
commit e11ab5ba01
2 changed files with 0 additions and 2 deletions

View File

@ -69,7 +69,6 @@ class Paginator
'prev' => ($page>0) ? ($page-1): "0",
'next' => ($page>= $lastpage) ? $lastpage : $page+1
];
print_r($result);
return $result;
}
}