Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
prisis authored and StyleCIBot committed Nov 13, 2017
1 parent e149e76 commit f7e5863
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ private function getGroupedQueries()
}

$connectionGroupedQueries[$key]['executionMS'] += $query['executionMS'];
++$connectionGroupedQueries[$key]['count'];
$connectionGroupedQueries[$key]['count']++;
$totalExecutionMS += $query['executionMS'];
}

Expand Down
2 changes: 1 addition & 1 deletion src/Viserio/Bridge/Doctrine/Testing/FactoryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function make(array $attributes = [])

$results = [];

for ($i = 0; $i < $this->amount; ++$i) {
for ($i = 0; $i < $this->amount; $i++) {
$results[] = $this->makeInstance($attributes);
}

Expand Down

0 comments on commit f7e5863

Please sign in to comment.