mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
Make SearchQuery_Range injectable.
The docs in docs/en/04_querying.md#searching-value-ranges indicate that this class should be injectable.
This commit is contained in:
parent
3e0a12e3f2
commit
bd3ef84cb3
@ -2,6 +2,7 @@
|
||||
|
||||
namespace SilverStripe\FullTextSearch\Search\Queries;
|
||||
|
||||
use SilverStripe\Core\Injector\Injectable;
|
||||
use SilverStripe\Dev\Deprecation;
|
||||
|
||||
/**
|
||||
@ -10,6 +11,8 @@ use SilverStripe\Dev\Deprecation;
|
||||
*/
|
||||
class SearchQuery_Range
|
||||
{
|
||||
use Injectable;
|
||||
|
||||
public $start = null;
|
||||
public $end = null;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user