laravel-cursor-paginator icon indicating copy to clipboard operation
laravel-cursor-paginator copied to clipboard

method_exists null in modelsEqual

Open devjagseergill opened this issue 3 years ago • 0 comments

PHP 8.0 error when there is no result

QueryMeta.php fn modelsEqual Line number 106

protected function modelsEqual($first, $second)
    {
        if (method_exists($first, 'is')) {
            return $first->is($second);
        }
        return $first == $second;
    }

devjagseergill avatar May 16 '22 18:05 devjagseergill