JakeQZ

Results 32 issues of JakeQZ

It seems this option is only available for `install` and not for `update`. But `install` will install the latest version and ignore version constraints set in `phive.xml`, and there doesn't...

enhancement
documentation
discussion

**Describe the bug** ``` 40 | ERROR | Doc comment for parameter $debug does not match actual | | variable name $css ``` **Code sample** ```php /** * @param bool...

https://www.php.net/manual/en/function.is-callable.php says > `is_callable()` reports constructors as not being callable. This is not true. At least not when called from a context where the constructor is callable, e.g. a child...

bug

**Describe the bug** ```cmd user@host [~]$ ~/getssl/getssl -u -a -q getssl: curl error checking releases: 7 ``` **To Reproduce** See above. **Expected behavior** If the `getssl` server is offline, the...

**Is your feature request related to a problem? Please describe.** With cPanel hosting, the SSL does not actually get installed. An additional step is required, which can be automated. **Describe...

Relates to #486. Something along the lines of https://github.com/MyIntervals/emogrifier/blob/main/.github/CONTRIBUTING.md The developer instructions at the end of the readme can then be moved there, and replaced with a link.

documentation
developer-specific

#352 only occurred with strict parsing, so was not picked up by the tests. IIRC, there are some contructs in PHPUnit to run a whole TestCase more than once with...

testing

In the following test, only the empty string passes: ```php public function provideEmptyCss() { return [ 'empty string' => [''], 'space' => [' '], 'newline' => ["\n"], 'carriage return' =>...

```css @charset UTF-8; h1 { color: green; } p { color: green; } ``` The rule for `h1` gets discarded. (The rule for `p` is included as expected.) This _is_...

I've read [this](https://phpunit.readthedocs.io/en/9.5/code-coverage-analysis.html), and still don't know how to get the report. I'm sure it's a simple command line option, but can't find easily find it. TBH, I was barely...

enhancement