Skip to content

Instantly share code, notes, and snippets.

@trq
Created March 18, 2015 05:52
Show Gist options
  • Save trq/775e80969ec40be7e7da to your computer and use it in GitHub Desktop.
Save trq/775e80969ec40be7e7da to your computer and use it in GitHub Desktop.
public function getRelationById($relation, $id)
{
return array_filter($this->{$relation}, function($entity) use ($id) {
return $entity->getId() === $id;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment