Skip to content

Commit

Permalink
Merge pull request #4 from mgp25/analysis-8nDMOG
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
mgp25 authored Apr 13, 2018
2 parents d8efae3 + 8435fd5 commit aae119e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion devtools/checkStyle.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private function _processFile(
$params = explode(', ', $params);

$outputLines[] = $funcstart.'('.PHP_EOL;
for ($i = 0, $len = count($params); $i < $len; ++$i) {
for ($i = 0, $len = count($params); $i < $len; $i++) {
$newline = ' '.$params[$i];
if ($i == ($len - 1)) {
$newline .= ')'.PHP_EOL;
Expand Down
2 changes: 1 addition & 1 deletion examples/GetDefinition.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
foreach ($defintions as $definition) {
echo $i.'. Tipo: '.$definition->getType()."\n";
echo ' Definición: '.$definition->getDefinition()."\n\n";
++$i;
$i++;
}

0 comments on commit aae119e

Please sign in to comment.