1 | <?php |
||
7 | class CounterParams extends Model |
||
8 | { |
||
9 | |||
10 | protected $callback = null; |
||
11 | |||
12 | protected $field = null; |
||
13 | |||
14 | protected $mappingClasses = []; |
||
15 | |||
16 | protected $propNameMap = []; |
||
17 | |||
18 | /** |
||
19 | * Retrieve the callback property |
||
20 | * |
||
21 | * @return string|null |
||
22 | */ |
||
23 | public function getCallback() |
||
27 | |||
28 | /** |
||
29 | * Set the callback property |
||
30 | * |
||
31 | * @param string $callback |
||
32 | * @return $this |
||
33 | */ |
||
34 | public function setCallback($callback) |
||
39 | |||
40 | /** |
||
41 | * Retrieve the field property |
||
42 | * |
||
43 | * @return string|null |
||
44 | */ |
||
45 | public function getField() |
||
49 | |||
50 | /** |
||
51 | * Set the field property |
||
52 | * |
||
53 | * @param string $field |
||
54 | * @return $this |
||
55 | */ |
||
56 | public function setField($field) |
||
61 | } |
||
62 |