fix linter

This commit is contained in:
Damodar Lohani
2024-09-22 02:43:29 +00:00
parent 8c46f73f69
commit 9b3f1a2c4a
+1 -1
View File
@@ -625,7 +625,7 @@ class Response extends SwooleResponse
}
}
if(!$data->isSet($key) && !$rule['required']) { // set output key null if data key is not set and required is false
if (!$data->isSet($key) && !$rule['required']) { // set output key null if data key is not set and required is false
$output[$key] = null;
continue;
}