public function ExpressionBuilder::lte in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/collections/lib/Doctrine/Common/Collections/ExpressionBuilder.php \Doctrine\Common\Collections\ExpressionBuilder::lte()
Parameters
string $field:
mixed $value:
Return value
File
- vendor/
doctrine/ collections/ lib/ Doctrine/ Common/ Collections/ ExpressionBuilder.php, line 108
Class
- ExpressionBuilder
- Builder for Expressions in the {@link Selectable} interface.
Namespace
Doctrine\Common\CollectionsCode
public function lte($field, $value) {
return new Comparison($field, Comparison::LTE, new Value($value));
}