1 | <?php |
||
9 | class TextCriteria implements CriteriaInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var string|null |
||
13 | */ |
||
14 | private $text; |
||
15 | |||
16 | /** |
||
17 | * @param string $text |
||
18 | */ |
||
19 | 9 | public function __construct(string $text = null) |
|
23 | |||
24 | /** |
||
25 | * @return string|null |
||
26 | */ |
||
27 | 5 | public function getText() |
|
31 | |||
32 | /** |
||
33 | * @param string $text |
||
34 | */ |
||
35 | 7 | public function setText(string $text = null) |
|
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | 8 | public function shouldBeApplied(): bool |
|
47 | } |
||
48 |