offsetUnset() public method

Removes row from result set.
public offsetUnset ( $key ) : null
return null
Beispiel #1
0
 /**
  * Removes row from result set.
  *
  * @param mixed $key Row's primary key to unset
  * @return void
  */
 public function offsetUnset($key)
 {
     $this->selection->offsetUnset($key);
 }