Landish\Pagination\Pagination::getPageLinkWrapper PHP Method

    protected function getPageLinkWrapper($url, $page)
    {
        if ($page == $this->paginator->currentPage()) {
            return $this->getActivePageWrapper($page);
        }
        return $this->getAvailablePageWrapper($url, $page);
    }