File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public function bar(): bool
1313
1414 public function foo (): ?string
1515 {
16- foreach ($ itens as $ item ) {
16+ foreach ($ items as $ item ) {
1717 if (! $ item ->isItem ()) {
1818 return 'There is an item that is not an item ' ;
1919 }
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public function bar(): bool
1717
1818 public function foo (): ?string
1919 {
20- foreach ($ itens as $ item ) {
20+ foreach ($ items as $ item ) {
2121 if (! ($ item ->isItem ())) {
2222 return 'There is an item that is not an item ' ;
2323 } else {
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ index 5a82a93..7d5eb01 100644
6969- public function foo(): ?string
7070+ public function foo(): string|null
7171 {
72- foreach ($itens as $item) {
72+ foreach ($items as $item) {
7373 if (! $item->isItem()) {
7474diff --git a/tests/fixed/NamingCamelCase.php b/tests/fixed/NamingCamelCase.php
7575index 57d9f2b..5493471 100644
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ index 5a82a93..7d5eb01 100644
6969- public function foo(): ?string
7070+ public function foo(): string|null
7171 {
72- foreach ($itens as $item) {
72+ foreach ($items as $item) {
7373 if (! $item->isItem()) {
7474diff --git a/tests/fixed/NamingCamelCase.php b/tests/fixed/NamingCamelCase.php
7575index 57d9f2b..5493471 100644
You can’t perform that action at this time.
0 commit comments