Skip to content

Commit

Permalink
[POC] Use fully qualified type name
Browse files Browse the repository at this point in the history
https://docs.phpdoc.org/guide/guides/types.html#supported-types

Problem though: now PhpStorm complains this being a "unnecessary
qualifier"
  • Loading branch information
thlehmann-ionos committed Aug 20, 2024
1 parent cfe09e7 commit 003049d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion lib/Controller/AuthSettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class AuthSettingsController extends Controller {
/**
* @param string $appName
* @param IRequest $request
* @param IProvider $tokenProvider
* @param \OC\Authentication\Token\IProvider $tokenProvider
* @param ISession $session
* @param ISecureRandom $random
* @param string|null $userId
Expand Down
5 changes: 0 additions & 5 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@
<referencedClass name="OC\Authentication\Token\INamedToken" />
</errorLevel>
</UndefinedClass>
<UndefinedDocblockClass>
<errorLevel type="suppress">
<referencedClass name="OCA\SimpleSettings\Controller\IProvider"/>
</errorLevel>
</UndefinedDocblockClass>
</issueHandlers>
<extraFiles>
<directory name="vendor"/>
Expand Down

0 comments on commit 003049d

Please sign in to comment.