Tribe__Repository::order( $order = 'ASC' )
{@inheritdoc}
Source
File: src/Tribe/Repository.php
public function order( $order = 'ASC' ) {
$order = strtoupper( $order );
if ( ! in_array( $order, array( 'ASC', 'DESC' ) ) ) {
return $this;
}
$this->query_args['order'] = $order;
return $this;
}