core/source/helpers/call.php
2025-09-16 12:05:35 +02:00

22 lines
152 B
PHP

<?php
namespace davina\helpers\call;
/**
*/
function convey(
$x,
$fs
)
{
$y = $x;
foreach ($fs as $f)
{
$y = ($f)($y);
}
return $y;
}
?>