Skip to content

Commit

Permalink
fix(targetticket,targetchange,targetproblem): fix interface
Browse files Browse the repository at this point in the history
  • Loading branch information
btry committed Mar 21, 2024
1 parent cde53db commit 2fbc6bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion inc/targetchange.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public static function getTargetItemtypeName(): string {
return Change::class;
}

protected static function getTemplateItemtypeName(): string {
protected function getTemplateItemtypeName(): string {
return ChangeTemplate::class;
}

Expand Down
2 changes: 1 addition & 1 deletion inc/targetproblem.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public static function getTargetItemtypeName(): string {
return Problem::class;
}

protected static function getTemplateItemtypeName(): string {
protected function getTemplateItemtypeName(): string {
return ProblemTemplate::class;
}

Expand Down
2 changes: 1 addition & 1 deletion inc/targetticket.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static function getTargetItemtypeName(): string {
return Ticket::class;
}

protected static function getTemplateItemtypeName(): string {
protected function getTemplateItemtypeName(): string {
return TicketTemplate::class;
}

Expand Down

0 comments on commit 2fbc6bd

Please sign in to comment.