- Issue created by @dieterholvoet
- Status changed to Needs review
about 1 year ago 11:22am 14 March 2024 - last update
about 1 year ago 11 pass - π¬π§United Kingdom darren.fisher
darren.fisher β made their first commit to this issueβs fork.
- π¬π§United Kingdom darren.fisher
Just fixed the phpcs errors introduced by these changes. The PHPUnit failures I'm unsure of the correct approach.
Line 32 of
tests/src/Kernel/Command/DebugLoadersTest.php
contains the following assertion:
self::assertStringContainsString('/twig_tweak/templates/', $display);
The test is asserting that the output must contain the string:
"/twig_tweak/templates/"
But the actual output is:
"modules/custom/twig_tweak-3427835/templates/"
I'm not sure if this needs some sort of partial string check update using regex as the
-3427835
relates specifically to this issue branch which means phpunit will always fail on any branch. This feels like a separate issue altogether.What do you think?
- π¬π§United Kingdom darren.fisher
Also the PHPStan errors are weird. They all state:
No error to ignore is reported on line XX
Here's the full error output:
------ -------------------------------------------- Line src/Command/SignatureFormatter.php ------ -------------------------------------------- 47 No error to ignore is reported on line 47. ------ -------------------------------------------- ------ -------------------------------------------- Line src/UriExtractor.php ------ -------------------------------------------- 49 No error to ignore is reported on line 49. 83 No error to ignore is reported on line 83. ------ -------------------------------------------- ------ --------------------------------------------- Line src/UrlExtractor.php ------ --------------------------------------------- 72 No error to ignore is reported on line 72. 112 No error to ignore is reported on line 112. ------ --------------------------------------------- ------ --------------------------------------------- Line src/View/BlockViewBuilder.php ------ --------------------------------------------- 148 No error to ignore is reported on line 148. ------ --------------------------------------------- [ERROR] Found 6 errors
When I inspect the first one I see:
// @todo Fix this. // @phpstan-ignore-next-line
I'm not sure why these are here? I'm sure there is some reason but it appears the PHPStan would not error on the following line anyway so maybe these can be removed? Again seems like this is probably a separate issue?