1 | <?php |
||
5 | class TextCriteria implements CriteriaInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $text; |
||
11 | |||
12 | /** |
||
13 | * @return string |
||
14 | */ |
||
15 | public function getText() |
||
19 | |||
20 | /** |
||
21 | * @param string $text |
||
22 | * |
||
23 | * @return TextCriteria |
||
24 | */ |
||
25 | 7 | public function setText($text) |
|
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 8 | public function shouldBeApplied() |
|
39 | } |
||
40 |