core/source/helpers/call.php

22 lines
152 B
PHP
Raw Permalink Normal View History

2025-09-09 12:07:53 +02:00
<?php
2025-09-16 12:05:35 +02:00
namespace davina\helpers\call;
2025-09-09 12:07:53 +02:00
/**
*/
function convey(
$x,
$fs
)
{
$y = $x;
foreach ($fs as $f)
{
$y = ($f)($y);
}
return $y;
}
?>