I have also used the single method jQuery-like solution and did like it but had read some posts that for some reason made me think others thought it was bad practice. But now I am reading around again and came across this post.
My solutions had (disclaimer: condensed formatting)
class Person {
protected $name;
protected $age;
public function name($value = null) {
if (null !== $value) {
$this->name = (string) $value;
return $this;
}
return $this->name;
}
public function age($value = null) {
if (null !== $value) {
$this->age = (int) $value;
return $this;
}
return $this->age;
}
}
I did enjoy this type of interface for a class
$person1 = new Person();
$person1->name('Bob')->age(30);
echo $person->name();
The general idea was that if $value was null then send back the property, otherwise set the property to $value, maybe type casting it or running it through some other filters then returning the instance of the class.
Now that I am re-visiting this, Im not really sure why this is so bad EXCEPT for the fact that you may confuse your IDE with return values since it will either be your property data type OR your class.
Needing to set the value to false still works here, in the (for me) edge-case where I need to set to null then I would just one-off/case-by-case change the default/condition check to accomodate.
I did appreciate the lesser boilerplate feeling of not having to write two methods AND their associated phpdoc blocks.
falseornull? – chumkiu Nov 15 '12 at 12:35