for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
if (! function_exists('_val')) {
/**
* @param mixed $value
* @param null|mixed $default
*
* @return mixed
*/
function _val($value, $default = null)
{
return is_null($value) ? value($default) : $value;
}