Nico Hiort af Ornäs
Nico Hiort af Ornäs
> Are you sure you used `psalm-plugin` and not `psalm` in your cli invocation? Because that's what `psalm` would output when asked to check a non-existing file/folder. I copied the...
> Curious. What does `ls -l vendor/bin/psalm-plugin` output? ``` ls -l vendor/bin/psalm-plugin -rwxrwxr-x 1 nico nico 3330 Dec 27 11:27 vendor/bin/psalm-plugin ```
These are my used versions: ``` composer show | grep psalm psalm/plugin-phpunit 0.18.4 Psalm plugin for PHPUnit vimeo/psalm 5.18.0 A static analysis tool for finding errors in PHP applications weirdan/doctrine-psalm-plugin...
@higidi I have rebased it.
I had the same issue. I ended up removing the phpdoc and surrounding some code with an if statement with `$form instanceof Form`.
I'm having a similar issue when modifying php.ini files: ``` [global] ... ; Time limit for child processes to wait for a reaction on signals from master. ; Available units:...
> @nicodemuz Interesting. Your issue sounds like it would be most generally handled with two options. > > 1. to uncomment parameters if existing > 2. to add new parameters...
Hmmm, I'm not sure if it's cause my images have `loading="lazy"` attribute..
This seems to be a workaround: ``` $client->executeScript(" Promise.all(Array.from(document.images).filter(img => !img.complete).map(img => new Promise(resolve => { img.onload = img.onerror = resolve; }))).then(() => { console.log('All images loaded.'); var div =...