Timo Tijhof
Timo Tijhof
## Observed Behavior Based on previous releases, it seems the tags `v16.0.0` and `v17.0.0` were not yet pushed to Git. The links from the CHANGELOG currently don't resolve correctly as...
* https://github.com/gruntjs/grunt-contrib-connect/issues/286
Ref https://testanything.org/tap-version-14-specification.html#skipping-everything.
**Describe the bug** I have tried many ways, but am unable to make a link to the class known to Doxygen as `Wikimedia\Rdbms\ChronologyProtector`. **To Reproduce** I have tried bare references,...
This follows-up from the discussion at https://github.com/composer/packagist/issues/1458. Notable PHP-based communities that use Gerrit for code review, that I'm aware of: * TYPO3 https://review.typo3.org/ * Wikimedia https://gerrit.wikimedia.org/ Primary motiviation: Submit packagse...
## Steps to reproduce 1. Firefox 192.2 (44469) 2. Open https://treasure21.timotijhof.net/ducks.html 3. Click "First clue" and type "spg". ### Expected behavior The input element is removed, and a new input...
[Demo: Phan in Browser](https://phan.github.io/demo/?code=%3C%3Fphp%0Afunction+parse%28string+%24url%29%3A+%3Farray+%7B%0A++++if+%28%21%24url+%7C%7C+%21str_contains%28%24url%2C+%27valid%27%29%29+%7B%0A++++++++return+null%3B%0A++++%7D%0A++++return+%5B+%27host%27+%3D%3E+%27example%27%5D%3B%0A%7D%0A%0Afunction+main%28%29+%7B%0A++++%24parsed+%3D+parse%28%27http%3A%2F%2Ftest%27%29%3B%0A++++print+%24parsed%5B%27host%27%5D%3B%0A++++%2F%2F+%5E+PHP+Warning%3A+array+offset+on+value+of+type+null%0A++++%2F%2F+%5E+Phan%3A+PhanTypeArraySuspiciousNullable%0A%0A++++%24parsed+%3D+parse%28%27http%3A%2F%2Ftest%27%29+%3F%3F+false%3B%0A++++print+%24parsed%5B%27host%27%5D%3B%0A++++%2F%2F+%5E+PHP+Warning%3A+array+offset+on+value+of+type+bool%0A++++%2F%2F+%5E+Phan%3A+OK%3F%0A++++%0A++++%0A++++%24parsed+%3D+parse%28%27http%3A%2F%2Fvalid.test%27%29%3B%0A++++print+%24parsed%5B%27host%27%5D%3B%0A++++%2F%2F+%5E+PHP%3A+OK%0A++++%2F%2F+%5E+Phan%3A+PhanTypeArraySuspiciousNullable%0A%0A++++%24parsed+%3D+parse%28%27http%3A%2F%2Fvalid.test%27%29+%3F%3F+false%3B%0A++++print+%24parsed%5B%27host%27%5D%3B%0A++++%2F%2F+%5E+PHP%3A+OK%0A%7D%0A%0Amain%28%29%3B) ```php
I spent a good amount of time today figuring out why a certain code path works fine during development with https://github.com/bobthecow/mustache.php, but crashes in a container for production, where we...