Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
CS: Pre incrementation/decrementation should be used if possible
Browse files Browse the repository at this point in the history
  • Loading branch information
gharlan committed Apr 7, 2015
1 parent cc62720 commit 1ecb64f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ClassMapGenerator.php
Expand Up @@ -95,7 +95,7 @@ private static function findClasses($path)
$classes = array();

$namespace = '';
for ($i = 0, $max = count($tokens); $i < $max; $i++) {
for ($i = 0, $max = count($tokens); $i < $max; ++$i) {
$token = $tokens[$i];

if (is_string($token)) {
Expand Down

0 comments on commit 1ecb64f

Please sign in to comment.