You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 5, 2023. It is now read-only.
Feat: PHP-8.1 support and Laravel scout 9.0 support (#163)
* Feat: PHP-8.1 support and laravel scout 9.0 support
* Feat: Add Laravel scout 9.3 support
Co-authored-by: Santosh Jung Shahi <[email protected]>
Compatibility with Scout 5 (#106)
* Compatibility with Scout 5
No "cross-installation" possible due to changed method signature
Pass around new $builder var
Also: Use getScoutModelsByIds/getScoutKey
Inspired by laravel/scout@4.0...5.0#diff-f2faa85f27580a9b67d73a8a273bfef1 / laravel/scout@9f06b9c
* Remove PHP5 as laravel/scout^5 / laravel5.6 also removed it
Removed count function. Fixes#80 (#84)
Since php 7.2, count a number will generate a warning. Because
$results['hits']['total'] is a number we can just compare it to zero.
`if ($results['hits']['total'] === 0)`