1 | <?php |
||
15 | class TEntityTypeModificationFunctionType extends IsOK |
||
16 | { |
||
17 | use TEntityTypeModificationFunctionMappingPropertyGroup; |
||
18 | /** |
||
19 | * @property string $functionName |
||
20 | */ |
||
21 | private $functionName = null; |
||
22 | |||
23 | /** |
||
24 | * @property string $rowsAffectedParameter |
||
25 | */ |
||
26 | private $rowsAffectedParameter = null; |
||
27 | |||
28 | /** |
||
29 | * Gets as functionName |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getFunctionName() |
||
37 | |||
38 | /** |
||
39 | * Sets a new functionName |
||
40 | * |
||
41 | * @param string $functionName |
||
42 | * @return self |
||
43 | */ |
||
44 | public function setFunctionName($functionName) |
||
49 | |||
50 | /** |
||
51 | * Gets as rowsAffectedParameter |
||
52 | * |
||
53 | * @return string |
||
54 | */ |
||
55 | public function getRowsAffectedParameter() |
||
59 | |||
60 | /** |
||
61 | * Sets a new rowsAffectedParameter |
||
62 | * |
||
63 | * @param string $rowsAffectedParameter |
||
64 | * @return self |
||
65 | */ |
||
66 | public function setRowsAffectedParameter($rowsAffectedParameter) |
||
71 | |||
72 | public function isOK(&$msg = null) |
||
84 | } |
||
85 |