Skip to content

Commit 4f1b08c

Browse files
committed
Update SearchFilterInterface.php
1 parent 6f3c6a6 commit 4f1b08c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Doctrine/Common/Filter/SearchFilterInterface.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ interface SearchFilterInterface
3939
/**
4040
* @var string The value must be contained in the field case-insensitive
4141
*/
42-
public const STRATEGY_IPARTIAL = 'partial';
42+
public const STRATEGY_IPARTIAL = 'ipartial';
4343

4444
/**
4545
* @var string Finds fields that are starting with the value
@@ -49,7 +49,7 @@ interface SearchFilterInterface
4949
/**
5050
* @var string Finds fields that are starting with the value case-insensitive
5151
*/
52-
public const STRATEGY_ISTART = 'start';
52+
public const STRATEGY_ISTART = 'istart';
5353

5454
/**
5555
* @var string Finds fields that are ending with the value
@@ -59,7 +59,7 @@ interface SearchFilterInterface
5959
/**
6060
* @var string Finds fields that are ending with the value case-insensitive
6161
*/
62-
public const STRATEGY_IEND = 'end';
62+
public const STRATEGY_IEND = 'iend';
6363

6464
/**
6565
* @var string Finds fields that are starting with the word
@@ -69,5 +69,5 @@ interface SearchFilterInterface
6969
/**
7070
* @var string Finds fields that are starting with the word case-insensitive
7171
*/
72-
public const STRATEGY_IWORD_START = 'word_start';
72+
public const STRATEGY_IWORD_START = 'iword_start';
7373
}

0 commit comments

Comments
 (0)