Skip to content

Instantly share code, notes, and snippets.

@mustafaileri
Last active June 23, 2017 11:04
Show Gist options
  • Save mustafaileri/8840988 to your computer and use it in GitHub Desktop.
Save mustafaileri/8840988 to your computer and use it in GitHub Desktop.
Doctrine Filter Sample
$giftProducts = $cart->getItems()->filter(function($item) {
return $item->getTotal() == 0;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment