Kraken\Util\Support\ArraySupport::isEmpty PHP Method

isEmpty() public static method

Check if given array is empty.
public static isEmpty ( array $array ) : boolean
$array array
return boolean
    public static function isEmpty($array)
    {
        return empty($array);
    }