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