Extends
lithium\core\Object
Overloading for writing to inaccessible properties.
Parameters
- string $name Property name.
- string $value Property value.
Returns
mixed Result.Source
public function __set($name, $value = null) {
if (is_array($name) && !$value) {
return array_map(array(&$this, '__set'), array_keys($name), array_values($name));
}
$this->_updated[$name] = $value;
}