Skip to content

Commit 0506294

Browse files
committed
Update Transformer.php
1 parent 9ffb532 commit 0506294

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Ubiquity/attributes/items/Transformer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public function __construct(string $name) {
2424
$this->name = $name;
2525
}
2626

27-
public function isSameAs(BaseAnnotationTrait $annot): bool {
28-
return \get_class($annot) === self::class && $this->name == $annot->name;
27+
public function isSameAs($annot): bool {
28+
return \get_class($annot) === Transformer::class && $this->name == $annot->name;
2929
}
3030

3131
}

0 commit comments

Comments
 (0)