Leo

Results 2 issues of Leo

## 版本号 ~ 1.5.14 ## 什么问题 ~json schema 不支持数组模拟 ## 如何复现此问题 `{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://example.com/product.schema.json", "title": "Product", "description": "A product from Acme's catalog", "type": "object", "properties": { "productId": {...

in "captcha/src/Captcha.php" ``` public function check($value) { if ( ! $this->session->has('captcha')) { return false; } $key = $this->session->get('captcha.key'); if ( ! $this->session->get('captcha.sensitive')) { $value = $this->str->lower($value); } $this->session->remove('captcha'); return $this->hasher->check($value,...