Pinq\Providers\DSL\Compilation\Parameters\ParameterHasher::valueType PHP Method

valueType() public static method

public static valueType ( ) : ValueTypeHasher
return ValueTypeHasher
    public static function valueType()
    {
        return new ValueTypeHasher();
    }

Usage Example

 public function visitOrderBy(Segments\OrderBy $segment)
 {
     foreach ($segment->getOrderings() as $ordering) {
         $this->parameters->addId($ordering->getIsAscendingId(), ParameterHasher::valueType());
     }
     return parent::visitOrderBy($segment);
 }
All Usage Examples Of Pinq\Providers\DSL\Compilation\Parameters\ParameterHasher::valueType