问题 For reasons of ease of maintenance AND IDE class auto-completion and member hinting, I've used PHPDoc in my project. Given this example class: class my_class { public $id; public $name; public $number; public function __construct() { //Do something } public function Rename($name) { $this->name = $name; } } I would prefer to document all properties ( $id , $name and $number ) with the class documentation itself, which is above the class declaration, and then place documentation for methods (if