Example #1
0
 /**
  * {@inheritdoc}
  */
 public function defaultConstructorArguments()
 {
     return array(Criteria::lte(25), Criteria::gt(30));
 }
Example #2
0
 /**
  * Test lte.
  */
 public function testLte()
 {
     $this->binaryConstraintTest(Criteria::lte(5), LessThanEqual::class, 5);
 }