offsetSet() public method

Mimic row.
public offsetSet ( $key, $value ) : null
return null
Example #1
0
 /**
  * Mimic row.
  *
  * @param mixed $key Row's primary key
  * @param Nette\Database\Table\IRow $value
  * @return void
  */
 public function offsetSet($key, $value)
 {
     $this->selection->offsetSet($key, $value);
 }