Skip to content

Commit

Permalink
Merge pull request #18 from andytson/feature/php-7.2-fixes
Browse files Browse the repository at this point in the history
Remove unneeded by-reference on built-in fuction
  • Loading branch information
mrook authored Jun 11, 2017
2 parents bdd4734 + 85ebf1e commit 772f7d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Archive/Tar.php
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ public function setAttribute()
}

// ----- Get the arguments
$v_att_list = & func_get_args();
$v_att_list = func_get_args();

// ----- Read the attributes
$i = 0;
Expand Down

0 comments on commit 772f7d0

Please sign in to comment.