1 | <?php |
||
5 | class ColumnSearch |
||
6 | { |
||
7 | |||
8 | /** @var string */ |
||
9 | private $columnName; |
||
10 | |||
11 | /** @var string */ |
||
12 | private $searchValue; |
||
13 | |||
14 | /** |
||
15 | * ColumnSearch constructor. |
||
16 | * @param string $columnName |
||
17 | * @param string $searchValue |
||
18 | */ |
||
19 | public function __construct($columnName, $searchValue) |
||
24 | |||
25 | /** |
||
26 | * @return string |
||
27 | */ |
||
28 | public function columnName() |
||
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | public function searchValue() |
||
40 | } |