lithium\data\Entity::set()
Allows several properties to be assigned at once, i.e.:
$record->set(['title' => 'Lorem Ipsum', 'value' => 42]);
Parameters
- 
							array
							$dataAn associative array of fields and values to assign to this Entityinstance.
Returns
voidSource
	public function set(array $data) {
		foreach ($data as $name => $value) {
			$this->__set($name, $value);
		}
	}