Implements \Drupal\Core\Entity\Query\QueryInterface::sort().
public function sort($field, $direction = 'ASC', $langcode = NULL) {
$this->sort[] = array(
'field' => $field,
'direction' => $direction,
'langcode' => $langcode,
);
return $this;
}