of() public static method

public static of ( $context, $column )
Example #1
0
 /**
  * forUpdate()->of('column') => 'FOR UPDATE OF column'
  * @param string $column
  * @return \phprs\ezsql\rules\select\GetRule
  */
 public function of($column)
 {
     ForUpdateOfImpl::of($this->context, $column);
     return new GetRule($this->context);
 }