Skip to content

Instantly share code, notes, and snippets.

@real34
Created January 19, 2015 08:42
Show Gist options
  • Save real34/05371e11c2b7191ef3d8 to your computer and use it in GitHub Desktop.
Save real34/05371e11c2b7191ef3d8 to your computer and use it in GitHub Desktop.
public function get($id)
{
$es = ConnectionManager::get(self::defaultConnectionName());
$search = new Search($es);
$search->addIndex('indications');
$result = $search->search($id);
return new Indication($result->getResults()[0]->getSource());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment