Skip to content

Commit

Permalink
php_BeautifierM - count извън for
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuseinov committed Apr 15, 2015
1 parent cafeca2 commit d4970e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion php/BeautifierM.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ function parse($str)

expect(is_array($tokens));

for($i = 0; $i< $count = count($tokens); $i++) {
$count = count($tokens);

for($i = 0; $i < $count; $i++) {

$token = $tokens[$i];

Expand Down

0 comments on commit d4970e1

Please sign in to comment.