Esempio n. 1
0
 /**
  * Performs a logical negation of the given constraint
  *
  * @param ConstraintInterface $constraint Constraint to negate
  * @throws \RuntimeException
  * @return \TYPO3\CMS\Extbase\Persistence\Generic\Qom\NotInterface
  * @api
  */
 public function logicalNot(ConstraintInterface $constraint)
 {
     return $this->qomFactory->not($constraint);
 }
Esempio n. 2
0
 /**
  * Performs a logical negation of the given constraint
  *
  * @param \TYPO3\CMS\Extbase\Persistence\Generic\Qom\ConstraintInterface $constraint Constraint to negate
  * @throws \RuntimeException
  * @return \TYPO3\CMS\Extbase\Persistence\Generic\Qom\NotInterface
  * @api
  */
 public function logicalNot(\TYPO3\CMS\Extbase\Persistence\Generic\Qom\ConstraintInterface $constraint)
 {
     return $this->qomFactory->not($constraint);
 }