1 | <?php |
||
7 | class PreCreateFilterConditionEvent extends Event |
||
8 | { |
||
9 | /** |
||
10 | * @var DataTypeInterface |
||
11 | */ |
||
12 | private $dataType; |
||
13 | |||
14 | /** |
||
15 | * @var mixed |
||
16 | */ |
||
17 | private $databaseValue; |
||
18 | |||
19 | /** |
||
20 | * @param DataTypeInterface $dataType |
||
21 | * @param mixed $value |
||
22 | */ |
||
23 | public function __construct(DataTypeInterface $dataType, $value) |
||
28 | |||
29 | /** |
||
30 | * @return DataTypeInterface |
||
31 | */ |
||
32 | public function getDataType() |
||
36 | |||
37 | /** |
||
38 | * @return mixed |
||
39 | */ |
||
40 | public function getDatabaseValue() |
||
44 | |||
45 | /** |
||
46 | * @param mixed $databaseValue |
||
47 | */ |
||
48 | public function setDatabaseValue($databaseValue) |
||
52 | } |
||
53 |