1: <?php
2:
3: namespace webfilesframework\core\datastore\functions\filter;
4:
5: use webfilesframework\core\datastore\functions\MIDatastoreFunction;
6:
7: /**
8: * description
9: *
10: * @author Sebastian Monzel < mail@sebastianmonzel.de >
11: * @since 0.1.7
12: */
13: class MSubstringFiltering implements MIDatastoreFunction
14: {
15:
16: protected $value;
17:
18: public function __construct($value)
19: {
20: $this->value = $value;
21: }
22:
23: public function getValue()
24: {
25: return $this->value;
26: }
27:
28: }