for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sergiors\Functional;
const gt = '\Sergiors\Functional\gt';
/**
* Greater than
*
* @author Sérgio Rafael Siqueira <[email protected]>
* @return mixed
*/
function gt(/* ...$args */)
{
$args = func_get_args();
$gt = function ($a, $b) {
return $a > $b;
};
return call_user_func_array(partial($gt), $args);
}