if I Use this it works; print all Json array
$api->rest('/customers', new Customers($db));
but if I use this, it does not work why? it print empty Json array
$api->rest('/customers', function() use($db) {
$c = new Customers($db);
$c->setLimit(20);
return $c;
});
any ideas?