| 1 | <?php |
||
| 4 | class PHPProperty extends PHPArg |
||
| 5 | { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $visibility = 'protected'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @return string |
||
| 14 | */ |
||
| 15 | public function getVisibility() |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $visibility |
||
| 22 | * @return $this |
||
| 23 | */ |
||
| 24 | public function setVisibility($visibility) |
||
| 29 | } |
||
| 30 |