Juliette
Juliette
Just a question. The test file is quite large containing lots of test functions. Is there any particular reason why this hasn't been split up to, for instance, one test...
PHP magic methods have a method signature check. While in most cases it wouldn't make sense not to use the declared/passed parameters, most notably with `__call()` and `__callStatic()` there can...
The current code style and PHP compatibility setup is pretty out-of-date, inconsistent and convoluted: * The Travis script seems to try use your theme to unit test PHPCompatibility. Honestly, you...
Copied from https://github.com/sebastianbergmann/phpunit/issues/4641#issuecomment-1003828421 for visibility: > I've just been looking at the implementation of #4641 and it raises some questions with me regarding the `assertStringEqualsStringIgnoringLineEndings` implementation: > 1. The term...
**Describe the BUG** The "Edit on GitHub" link is not always correct, especially when the theme is set up as a `remote_theme`. While this could be considered an issue with...
Based on the information from these docs: https://rundocs.io/configuring/sidebar.html, setting `show_sorted: false` in `_config.yml` is supposed to "turn off the order prefix". But it appears that this only works for the...
**Describe the BUG** Given a directory layout set up like so: ``` project root |- Sniffs |- Classes |- Constants |- .... |- MethodUse |- .... ``` Where each of...
Verify whether there are any code paths which could be reached where an international (multi-byte) domain would not have been translated to its ASCII value yet and non-multibyte-safe functions are...
## Summary Discovered while writing tests, see #740 The `Cookie` class takes the required `$name` and $value` parameters. These parameters are accepted "blindly". The only validation being done is checking...
Both the `Curl` as well as the `Fsockopen` class contain a `format_get()` method which build a URL from parts. These methods are inconsistent and handle the URL building slightly differently....