Builds the header row for the entity listing.
array A render array structure of header strings.
Drupal\Core\Entity\EntityListController::render()
public function buildHeader() {
$row['label'] = t('Label');
$row['id'] = t('Machine name');
$row['operations'] = t('Operations');
return $row;
}