bilogic
bilogic
3.35.0-RC1 now does not auto upload anything at all
A response of score or `false` is insufficient to capture the multiple possibilities that can go wrong https://github.com/josiasmontag/laravel-recaptchav3/blob/08548b818223a20fc7db04a8d060758f8efc4ef5/src/RecaptchaV3.php#L62-L78
It is a sanitized one but that is quite moot here, is there an option to silence this distraction? Or find determine the actual cause?
1. The errors in the log is the file I'm editing, I had to sanitize the logs because the path and filename is quite revealing. 2. I'm using VSCode, what...
This is most likely an encoding problem. Convert those old encodings GB-5 etc to UTF8. Better to fix at the source rather than have every reader (music player/viewer/editor) add code...
I'm not sure how stubs work, any URL/references?
https://raw.githubusercontent.com/php-stubs/wordpress-stubs/refs/heads/master/wordpress-stubs.php Is this a stub file that phpactor can process?
Thanks, don't mean to be a pain but it doesn't seem to be working, I would like to read the docblock, but instead it only says `method brandName` when my...
``` { "$schema": "/home/user/.local/share/code-server/extensions/phpactor.vscode-phpactor-1.7.5-universal/vendor/phpactor/phpactor/phpactor.schema.json", "worse_reflection.additive_stubs": [ "./ours/my/package/stubs/*.php", "./ours/my/package/stubs/Filament/Panel.php" ], "language_server_phpstan.enabled": false } ```
- So I tried both wildcard and `.../Panel.php` because I read https://phpactor.readthedocs.io/en/master/reference/stubs.html -> https://phpactor.readthedocs.io/en/master/reference/configuration.html#param-indexer-include-patterns - `./ours/...` is equivalent to `./vendor/` and is part of my project source tree To be...