Skip to content
This repository has been archived by the owner on Jan 8, 2019. It is now read-only.

Commit

Permalink
Whitespace changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ramsey committed Jul 22, 2013
1 parent f1bf9d1 commit c09744b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/array_column.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@ function array_column($input = null, $columnKey = null, $indexKey = null)
// parameters and trigger errors exactly as the built-in array_column()
// does in PHP 5.5.
$argc = func_num_args();

$params = func_get_args();

if ($argc < 2) {
trigger_error("array_column() expects at least 2 parameters, {$argc} given", E_USER_WARNING);
trigger_error("array_column() expects at least 2 parameters, {$argc} given", E_USER_WARNING);
return null;
}

Expand Down

0 comments on commit c09744b

Please sign in to comment.