Skip to content

Commit

Permalink
style: increment style post to match styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
audunrunhn committed Jul 18, 2023
1 parent bcf6446 commit 047f130
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
'not_operator_with_successor_space' => true,
'ordered_imports' => true,
'phpdoc_order' => true,
'increment_style' => ['style' => 'post'],
'global_namespace_import' => [
'import_classes' => true,
'import_constants' => null,
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ protected function getWrappedResponse(): JsonResponse
protected function getLazyResponse(): LazyCollection
{
return LazyCollection::make(function () {
for ($id = 1; $id <= 1000; ++$id) {
for ($id = 1; $id <= 1000; $id++) {
yield ['id' => $id, 'name' => 'Navn', 'data' => ['foo' => 'bar'], 'meta' => []];
}
});
Expand Down

0 comments on commit 047f130

Please sign in to comment.