Skip to content

Instantly share code, notes, and snippets.

@hamzaali00001
Created August 26, 2018 07:26
Show Gist options
  • Save hamzaali00001/f4d14401fed543a79a16d7eb353faffa to your computer and use it in GitHub Desktop.
Save hamzaali00001/f4d14401fed543a79a16d7eb353faffa to your computer and use it in GitHub Desktop.
function tap($value, $callback = null)
{
if (is_null($callback)) {
return new HigherOrderTapProxy($value);
}
$callback($value);
return $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment