Merge pull request #61565 from nextcloud/fix/psalm-strict/lib-exclusion

fix(psalm-strict): Fix lib exclusions
pull/61574/head
Kate 2 months ago committed by GitHub
commit c5d088cea7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      lib/public/SystemTag/Events/TagCreatedEvent.php
  2. 2
      lib/public/SystemTag/Events/TagDeletedEvent.php
  3. 2
      lib/public/SystemTag/Events/TagUpdatedEvent.php
  4. 4
      psalm-strict.xml

@ -17,5 +17,5 @@ use OCP\AppFramework\Attribute\Consumable;
* @since 35.0.0
*/
#[Consumable(since: '35.0.0')]
class TagCreatedEvent extends AbstractTagEvent {
final class TagCreatedEvent extends AbstractTagEvent {
}

@ -17,5 +17,5 @@ use OCP\AppFramework\Attribute\Consumable;
* @since 35.0.0
*/
#[Consumable(since: '35.0.0')]
class TagDeletedEvent extends AbstractTagEvent {
final class TagDeletedEvent extends AbstractTagEvent {
}

@ -19,7 +19,7 @@ use OCP\SystemTag\ISystemTag;
* @since 35.0.0
*/
#[Consumable(since: '35.0.0')]
class TagUpdatedEvent extends AbstractTagEvent {
final class TagUpdatedEvent extends AbstractTagEvent {
/**
* TagUpdatedEvent constructor
* @since 35.0.0

@ -45,8 +45,8 @@
<directory name="lib/composer"/>
<directory name="lib/l10n"/>
<directory name="3rdparty"/>
<directory name="lib/public"/>
<directory name="lib/private"/>
<file name="lib/public/AppFramework/Controller.php"/>
<file name="lib/public/AppFramework/OCSController.php"/>
<directory name="build"/>
</ignoreFiles>
</projectFiles>

Loading…
Cancel
Save