This commit is contained in:
Oliver Davies 2018-05-09 23:24:08 +01:00
parent 66667bcb5b
commit 4fa5cd767d
38 changed files with 996 additions and 76 deletions

8
src/helpers.php Normal file
View file

@ -0,0 +1,8 @@
<?php
function tap($value, $callback)
{
$callback($value);
return $value;
}