File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -126,10 +126,10 @@ public function testValidateWithStringRulesNotFound(): void
126
126
public function testValidateWithStringRulesFoundReadMessagesFromValidationConfig (): void
127
127
{
128
128
$ validation = new class () extends ValidationConfig {
129
- public $ signup = [
129
+ public array $ signup = [
130
130
'username ' => 'required ' ,
131
131
];
132
- public $ signup_errors = [
132
+ public array $ signup_errors = [
133
133
'username ' => [
134
134
'required ' => 'You must choose a username. ' ,
135
135
],
@@ -149,7 +149,7 @@ public function testValidateWithStringRulesFoundReadMessagesFromValidationConfig
149
149
public function testValidateWithStringRulesFoundUseMessagesParameter (): void
150
150
{
151
151
$ validation = new class () extends ValidationConfig {
152
- public $ signup = [
152
+ public array $ signup = [
153
153
'username ' => 'required ' ,
154
154
];
155
155
};
You can’t perform that action at this time.
0 commit comments