Fix PHPStan L2 error in traits

Created on 2 December 2022, over 2 years ago
Updated 11 April 2023, almost 2 years ago

Problem/Motivation

We are trying to reduce the L2 phpstan baseline before starting to go up to L2.
One thing to quickly reduce the number is tackle errors occurring in traits.

This is becuase phpstan reports errors for each class using the trait, causing lots of duplicates.
With some small and focussed non-intrusive changes, this would lower the baseline already a lot making it easier for further optimalisations of the baseline.

Proposed resolution

I propose to focus on small and simple fixes first which occur a lot in the baseline. Anything which needs a slightly more complex change i would descope.

πŸ“Œ Task
Status

Needs work

Version

10.1 ✨

Component
OtherΒ  β†’

Last updated about 4 hours ago

Created by

πŸ‡§πŸ‡ͺBelgium mallezie Loenhout

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡³πŸ‡ΏNew Zealand danielveza Brisbane, AU
    +++ b/core/modules/rest/tests/src/Functional/BasicAuthResourceTestTrait.php
    @@ -23,7 +23,7 @@ trait BasicAuthResourceTestTrait {
    -        'Authorization' => 'Basic ' . base64_encode($this->account->name->value . ':' . $this->account->passRaw),
    +        'Authorization' => 'Basic ' . base64_encode($this->account->getAccountName()->value . ':' . $this->account->passRaw),
    

    I think this is the cause of all the broken tests. getAccountName returns a string, so value isn't needed.

    The patch also doesn't apply to 10.1.x anymore, fixed the issues but couldn't get the baseline to regenerate properly. I was getting a lot of new warnings added to the baseline

  • Status changed to Needs review almost 2 years ago
  • πŸ‡³πŸ‡ΏNew Zealand danielveza Brisbane, AU

    Self addressed the feedback in #14 and regenerated the baseline. Lets see how the tests go.

  • Status changed to RTBC almost 2 years ago
  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    Believe I tested this one write

    I applied the patch
    Changed the level to 2
    Staged everything
    ./core/scripts/dev/commit-code-check.sh --cached
    Got no errors.

    Let me know if I missed a step for these level 2 stuff.

  • last update almost 2 years ago
    29,202 pass
  • πŸ‡¬πŸ‡§United Kingdom longwave UK

    Should this be postponed on πŸ“Œ Fix PHPStan L1 errors "Call to method getDefinitions()/getSortedDefinitions() on an unknown class Drupal\Core\Plugin\CategorizingPluginManagerTrait." Needs work , or should that part of the change here be removed, given it interferes with the fix there?

  • Status changed to Needs work almost 2 years ago
  • πŸ‡³πŸ‡ΏNew Zealand danielveza Brisbane, AU

    Oh good call. Yeah I think we should remove it from this issue. Thats only one part of this patch, so we can just remove it and regenerate the baseline

  • πŸ‡«πŸ‡·France mably

    Looks like the problem isn't fixed yet.

    Is there a better solution to it other than adding an @phpstan-ignore-next-line?

  • First commit to issue fork.
  • Merge request !11580Manually apply 3325057-15.patch β†’ (Open) created by mstrelan
  • πŸ‡¦πŸ‡ΊAustralia mstrelan

    Manually applied parts of #15 that weren't already resolved in HEAD and pushed up a new MR. Hiding patches.

  • Pipeline finished with Failed
    13 days ago
    Total: 1275s
    #455548
  • Pipeline finished with Success
    13 days ago
    Total: 551s
    #455620
  • πŸ‡³πŸ‡ΏNew Zealand danielveza Brisbane, AU

    Changes look good, the only thing I noticed missing from the original patch were the changes to BasicAuthResourceTestTrait::getAuthenticationRequestOptions. Should they be included in this?

    Other that that it looks good and is ready to be RTBC, just checking in on that one first.

  • πŸ‡¦πŸ‡ΊAustralia mstrelan

    Good spotting, I'm not sure why that one didn't make it initially. I generated the baseline at level 2, then updated that method and regenerated it. This removed a further 96 errors from the baseline, so I think that's worth it.

  • Pipeline finished with Success
    12 days ago
    Total: 552s
    #456751
  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    Seems feedback has been addressed.

Production build 0.71.5 2024