phprs\ezsql\rules\select\ForUpdateOfRule::of PHP Method

of() public method

forUpdate()->of('column') => 'FOR UPDATE OF column'
public of ( string $column ) : GetRule
$column string
return GetRule
    public function of($column)
    {
        ForUpdateOfImpl::of($this->context, $column);
        return new GetRule($this->context);
    }
ForUpdateOfRule