Skip to content

Commit

Permalink
removed unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuno committed Nov 17, 2016
1 parent ec0e2ef commit 0caa35d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/Table/TableColumn.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,16 +188,4 @@ private function isJson($string)
return (json_last_error() == JSON_ERROR_NONE);
}

/**
* Check if array is associative
*
* @param array $arr
* @return bool
*/
private function isArrayAssociative(array $arr)
{
if (array() === $arr) return false;
return array_keys($arr) !== range(0, count($arr) - 1);
}

}

0 comments on commit 0caa35d

Please sign in to comment.