| 1 | <?php |
||
| 19 | class BadUser |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @Filter("\stdClass") |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | protected $name; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | protected $about; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return string |
||
| 34 | */ |
||
| 35 | public function getName() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param string $name |
||
| 42 | * @return $this |
||
| 43 | */ |
||
| 44 | public function setName($name) |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function getAbout() |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @param string $about |
||
| 61 | * @return $this |
||
| 62 | */ |
||
| 63 | public function setAbout($about) |
||
| 69 | } |
||
| 70 |