Alessandro Lai
Alessandro Lai
So you have a small reproducer? Can you share it with us?
IIRC Symfony maintainers suggested to config it for prod only, because the bundle inserts its own error handler, that may play badly with Symfony's or PHPUnit's; see the outstanding #337....
> Ah right, I can remember some discussions about that. Isn't there some way we can modify the integration to not register itself or the error handlers based on if...
A small suggestion: you shouldn't do that in the `tearDown` method, but in the `assertPostConditions` method, which is the correct one, since it's executed just after the test method, and...
IIRC there's a standard solution for this kind of issues, and Symfony itself had to fix it in multiple places and multiple "standard" bundles configurations when they transitioned to using...
> I think this could be automated with `prettier` (https://prettier.io/). Well, not all unfortunately. This PR fixes some issues where the indentation level was wrong, and I don't think that...
In normal execution the `PassThrough` class would forward all options from the base Paraunit execution to the PHPunit one, but that doesn't happen with chunks: https://github.com/facile-it/paraunit/blob/032bb2d404e8449b672c489f826c207d6e52a282/src/Process/ProcessFactory.php#L52-L65 I do not understand...
@ilario-pierbattista I'm sorry but I'm unable to reproduce the issue, I've tried with #276, both under 1.x and 2.x, and the `--testsuite` options does not get appended to the PHPUnit...
Yes I agree, https://github.com/JetBrains/phpstorm-stubs/pull/1741 IS wrong. That attribute is overriding `\DOMNode::$attributes`, which is correctly marked as nullable: https://github.com/VincentLanglet/phpstorm-stubs/blob/fed4bb7b17ab85f9365a3a77cf9246d1eb5c1b08/dom/dom_c.php#L76-L81 I'll suggest a revert.
Hey @nesl247, thank you for reporting this! In theory, the 2.x branch IS still maintained, since we're still using it a lot in our company, due to the impossibility to...