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