Jonathan Silva

Results 2 issues of Jonathan Silva

I'm trying to use the same features as Joi... accept object array and objects with key : value [{"key": "value"}, ...] {"key": "value", ...} #### Postman ![Captura de tela de...

#### Postman ![Captura de tela de 2021-07-15 15-22-32](https://user-images.githubusercontent.com/33843748/125838437-4f5d5569-23c4-44b8-adba-48c1cbd2328f.png) #### Code ``` private function sanitize($data) { $schema = V::obj()->keys([ 'email' => V::string()->email(), 'password' => V::string()->required() ]); V::assert($data, $schema); } public function...