for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebServCo\Framework\Utils;
final class Arrays
{
public static function get($array, $key, $defaultValue = false)
return array_key_exists($key, $array) ? $array[$key] : $defaultValue;
}