kitetail / zttp

A developer-experience focused HTTP client, optimized for most common use cases.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tap() function violates code style

DASPRiD opened this issue · comments

The tap() function does not return immediately and thus violates the code style:

zttp/src/Zttp.php

Lines 203 to 206 in 1f61141

function tap($value, $callback) {
$callback($value);
return $value;
}

Hmm the style guide says methods not functions so I think we are ok here! Appreciate the concern though 🤗