qa: add missing type-hints to workflow Transition

Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com>
This commit is contained in:
Maximilian Bösing 2021-07-13 19:14:44 +02:00 committed by Alexander M. Turek
parent 3b21091cce
commit 660037858f

View File

@ -32,16 +32,25 @@ class Transition
$this->tos = (array) $tos; $this->tos = (array) $tos;
} }
/**
* @return string
*/
public function getName() public function getName()
{ {
return $this->name; return $this->name;
} }
/**
* @return string[]
*/
public function getFroms() public function getFroms()
{ {
return $this->froms; return $this->froms;
} }
/**
* @return string[]
*/
public function getTos() public function getTos()
{ {
return $this->tos; return $this->tos;