for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Isswp101\Persimmon\Helpers;
class Arr
{
public static function get(array $array, $key, $default = null)
return $array[$key] ?? $default;
}