Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
andrerom committed Aug 14, 2018
1 parent 6c946a1 commit 0b94221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ezutils/classes/ezphpcreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ function thisVariableText( $value, $column = 0, $iteration = 0, $maxIterations =
$column += strlen( $text );
$valueKeys = array_keys( $value );
$isIndexed = true;
for ($i = 0, $count = count($valueKeys); $i < $count; ++$i )
for ( $i = 0, $count = count( $valueKeys ); $i < $count; ++$i )
{
if ( $i !== $valueKeys[$i] )
{
Expand Down Expand Up @@ -676,7 +676,7 @@ static function variableText( $value, $column = 0, $iteration = 0, $maxIteration
$column += strlen( $text );
$valueKeys = array_keys( $value );
$isIndexed = true;
for ($i = 0, $count = count($valueKeys); $i < $count; ++$i )
for ( $i = 0, $count = count( $valueKeys ); $i < $count; ++$i )
{
if ( $i !== $valueKeys[$i] )
{
Expand Down

0 comments on commit 0b94221

Please sign in to comment.