コード例 #1
0
ファイル: callables.php プロジェクト: intrawarez/sabertooth
/**
 * Creates a new unary consumer from a given callable.
 *
 * @param callable $consumer
 *            The given callable.
 * @return UnaryConsumerInterface
 */
function UnaryConsumer(callable $consumer) : UnaryConsumerInterface
{
    Callables::newUnaryConsumer($consumer);
}