for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AcquiroPay\Models\Pagination;
use stdClass;
class Meta
{
private $total;
private $count;
private $perPage;
private $currentPage;
private $totalPages;
private $links;
/**
* @return mixed
*/
public function getTotal()
return $this->total;
}
* @param mixed $total
public function setTotal($total)
$this->total = $total;
public function getCount()
return $this->count;
* @param mixed $count
public function setCount($count)
$this->count = $count;
public function getPerPage()
return $this->perPage;
* @param mixed $perPage
public function setPerPage($perPage)
$this->perPage = $perPage;
public function getCurrentPage()
return $this->currentPage;
* @param mixed $currentPage
public function setCurrentPage($currentPage)
$this->currentPage = $currentPage;
public function getTotalPages()
return $this->totalPages;
public function setTotalPages(int $totalPages): void
$this->totalPages = $totalPages;
public function getLinks(): stdClass
return $this->links;
public function setLinks(stdClass $links): void
$this->links = $links;