1 | <?php |
||
14 | class TPropertyReferenceExpressionType extends IsOK |
||
15 | { |
||
16 | use GExpressionTrait; |
||
17 | /** |
||
18 | * @property string $property |
||
19 | */ |
||
20 | private $property = null; |
||
21 | |||
22 | /** |
||
23 | * Gets as property |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | public function getProperty() |
||
31 | |||
32 | /** |
||
33 | * Sets a new property |
||
34 | * |
||
35 | * @param string $property |
||
36 | * @return self |
||
37 | */ |
||
38 | public function setProperty($property) |
||
43 | |||
44 | public function isOK(&$msg = null) |
||
51 | } |
||
52 |