Tribe__Repository::sort( $orderby = array(),  $order = 'ASC',  $preserve_keys = false )

{@inheritdoc}


Source

File: src/Tribe/Repository.php

	public function sort( $orderby = array(), $order = 'ASC', $preserve_keys = false ) {
		$list = new WP_List_Util( $this->all() );

		return $list->sort( $orderby, $order, $preserve_keys );
	}