I\'m a little confused with PHP closures. Can someone clear this up for me:
// Sample PHP closure my_method(function($apples) use ($oranges) { // Do some
$apples is passed as an argument to my_method, and $oranges is injected inside.
$apples
my_method
$oranges