1
0
Fork 0
mirror of synced 2024-10-01 01:37:56 +13:00

fix linter

This commit is contained in:
Damodar Lohani 2024-09-22 02:43:29 +00:00
parent 8c46f73f69
commit 9b3f1a2c4a

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;
}