Skip to content

Commit

Permalink
fix/indistinguishable-suggestions-codestyle-427
Browse files Browse the repository at this point in the history
  • Loading branch information
moreamazingnick committed Jan 26, 2024
1 parent e7df347 commit e4be3c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions library/Businessprocess/BpNode.php
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,11 @@ public function getAlias()
return $this->alias ? preg_replace('~_~', ' ', $this->alias) : $this->name;
}

/**
* Get the label of the node
*
* @return ?string
*/
public function getLabel()
{
return ($this->alias ?? $this->name)
Expand Down

0 comments on commit e4be3c5

Please sign in to comment.