Determines whether this is a first-order clause.
Description
Checks to see if the current clause has any time-related keys.
If so, it’s first-order.
Parameters
$query
arrayrequired- Query clause.
Source
protected function is_first_order_clause( $query ) {
$time_keys = array_intersect( $this->time_keys, array_keys( $query ) );
return ! empty( $time_keys );
}
Changelog
Version | Description |
---|---|
4.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.