| 1 | <?php |
||
| 7 | trait TTypeAttributesTrait |
||
| 8 | { |
||
| 9 | use TSimpleIdentifierTrait; |
||
| 10 | /** |
||
| 11 | * @property string $name |
||
| 12 | */ |
||
| 13 | private $name = null; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Gets as name |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public function getName() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Sets a new name |
||
| 27 | * |
||
| 28 | * @param string $name |
||
| 29 | * @return self |
||
| 30 | */ |
||
| 31 | public function setName($name) |
||
| 36 | |||
| 37 | public function isTTypeAttributesValid(&$msg = null) |
||
| 50 | } |
||
| 51 |