Skip to content

Instantly share code, notes, and snippets.

@toretto460
Created August 27, 2018 20:27
Show Gist options
  • Save toretto460/793d5e78d56fc8dc9c8d006e8ab78309 to your computer and use it in GitHub Desktop.
Save toretto460/793d5e78d56fc8dc9c8d006e8ab78309 to your computer and use it in GitHub Desktop.
<?php
$productListing = new CircuitBreaker(
10,
function($searchKey) {
// $result is given from the api call
return $result;
}
);
$productsToShow = $productListing(['t-shirt'], []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment