Exemplo n.º 1
0
 /**
  * Determines if passed array is made of just arrays
  *
  * Useful if you want to determine if an object is an array of values or array of arrays
  *
  * @param $array
  * @return bool
  */
 public static function isArrays($array)
 {
     return ArrayUtil::all($array, 'is_array');
 }