PSR-2 fixes

This commit is contained in:
Oliver Davies 2017-11-14 18:20:27 +00:00
parent 518fe175b8
commit aaf09e61c1
3 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,7 @@
<?php
function tap($value, $callback) {
function tap($value, $callback)
{
$callback($value);
return $value;