pldin601/php-result

View on GitHub
src/util.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Result\Util;

/**
 * Returns the same value that was used as its argument.
 *
 * @param mixed $param
 * @return mixed
 */
function id($param)
{
    return $param;
}