Skip to content

Commit

Permalink
Does master pass?
Browse files Browse the repository at this point in the history
  • Loading branch information
samlitowitz committed Dec 24, 2023
1 parent 34dd1ca commit ae53576
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
3 changes: 2 additions & 1 deletion src/Psalm/Internal/Analyzer/ClassAnalyzer.php
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,8 @@ public function analyze(
null,
true,
),
$storage->getSuppressedIssuesForTemplateExtendParams() + $this->getSuppressedIssues(),
// $storage->getSuppressedIssuesForTemplateExtendParams() + $this->getSuppressedIssues(),
$this->getSuppressedIssues(),
);
}
}
Expand Down
18 changes: 0 additions & 18 deletions tests/DeprecatedAnnotationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,24 +101,6 @@ class A {
public $property;
}
'],
'suppressDeprecatedClassOnTemplateType' => [
'code' => '<?php
/**
* @deprecated
*/
class TheDeprecatedClass {}
/**
* @template T
*/
class TheParentClass {}
/**
* @extends TheParentClass<TheDeprecatedClass>
* @psalm-suppress DeprecatedClass
*/
class TheChildClass extends TheParentClass {}
'],
];
}

Expand Down

0 comments on commit ae53576

Please sign in to comment.