First a little note.
The @method works more worse than good because it's handled as a method, which it isn't.
Let me exactly explain why i want the auto completion.
I have this (strongly simplified)
class DBObject{
/**
* Id
*
* @var int
*/
protected $id;
/**
* DateTime
*
* @var DateTime
*/
protected $createTime;
/**
* Magic Getter
*
* @param string $name
* @return mixed
*/
public function __get($name){
return $this->{$name};
}
/**
* Magic Setter
*
* @param string $name
* @param mixed $value
*/
public function __set($name, $value){
$this->{$name} = $value;
}
}
$obj = new DBObject();
$obj->createTime->...
|
As you can see, "$obj->createTime->" offers you a correct code completion list for the methods and members for the DateTime object (this is what already works fine).
But when i just type "$obj->crea" i want a auto completion to write my code faster.
This way i use is really fast for creating new childs of this class without the need of creating a getter/setter for each member.
A public member instead of protected is not possible in my case because many conversations happens in the magic __get/__set which i've removed in this examplecode.
Please let us not talk about my way of coding, if someone try to.
I just wanted to suggest that it would be helpful for some people, like me, with a auto completion - And i just explain why this would be helpful to give the DEV's a reason to think about.