| 1 | <?php |
||
| 15 | class TPropertyValueType extends IsOK |
||
| 16 | { |
||
| 17 | use GInlineExpressionsTrait, GExpressionTrait; |
||
| 18 | /** |
||
| 19 | * @property string $property |
||
| 20 | */ |
||
| 21 | private $property = null; |
||
| 22 | |||
| 23 | public function __construct() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Gets as property |
||
| 31 | * |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | public function getProperty() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Sets a new property |
||
| 41 | * |
||
| 42 | * @param string $property |
||
| 43 | * @return self |
||
| 44 | */ |
||
| 45 | public function setProperty($property) |
||
| 50 | |||
| 51 | public function isOK(&$msg = null) |
||
| 62 | } |
||
| 63 |