Skip to content

Instantly share code, notes, and snippets.

@Danilovonline
Created August 11, 2017 19:56
Show Gist options
  • Save Danilovonline/a9dcce607eb5a007110139f577afc3e6 to your computer and use it in GitHub Desktop.
Save Danilovonline/a9dcce607eb5a007110139f577afc3e6 to your computer and use it in GitHub Desktop.
ZF2: order on fetchAll()
public function fetchAll()
{
$resultSet = $this->tableGateway->select(function ($select) {
$select->order('promocode');
});
return $resultSet;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment