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

Commit 020a4ff

Browse files
committed
Typo
1 parent 7fea677 commit 020a4ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CodeIgniter4/Tests/Arrays/ArrayDeclarationUnitTest.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,6 @@ class MyClass {
9191
public $arr = [
9292
'a'=> 1,
9393
'b'=> 2,
94-
'b' => 2,
94+
'c' => 3,
9595
];
9696
}

CodeIgniter4/Tests/Arrays/ArrayDeclarationUnitTest.inc.fixed

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,6 @@ class MyClass {
158158
public $arr = [
159159
'a' => 1,
160160
'b' => 2,
161-
'b' => 2,
161+
'c' => 3,
162162
];
163163
}

0 commit comments

Comments
 (0)