We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ffb532 commit 0506294Copy full SHA for 0506294
src/Ubiquity/attributes/items/Transformer.php
@@ -24,8 +24,8 @@ public function __construct(string $name) {
24
$this->name = $name;
25
}
26
27
- public function isSameAs(BaseAnnotationTrait $annot): bool {
28
- return \get_class($annot) === self::class && $this->name == $annot->name;
+ public function isSameAs($annot): bool {
+ return \get_class($annot) === Transformer::class && $this->name == $annot->name;
29
30
31
0 commit comments