Devise\Support\Sortable\EloquentBuilder::callParentPagination PHP Метод

callParentPagination() защищенный Метод

Wrapper method so we can call the parent's paginate method and also mock it in mockery too so we don't have to fiddle faddle with Eloquent underneath
protected callParentPagination ( integer $perPage, array $columns ) : Illuminate\Pagination\Paginator
$perPage integer
$columns array
Результат Illuminate\Pagination\Paginator
    protected function callParentPagination($perPage, $columns)
    {
        return parent::paginate($perPage, $columns);
    }