예제 #1
0
 /**
  * Returns a greater than or equal criterion used for matching objects against a query
  *
  * @param string $propertyName The name of the property to compare against
  * @param mixed $operand The value to compare with
  * @return Tx_Extbase_Persistence_QOM_ComparisonInterface
  * @api
  */
 public function greaterThanOrEqual($propertyName, $operand)
 {
     return $this->qomFactory->comparison($this->qomFactory->propertyValue($propertyName, $this->getSelectorName()), Tx_Extbase_Persistence_QueryInterface::OPERATOR_GREATER_THAN_OR_EQUAL_TO, $operand);
 }