| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class WorkflowDTO |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $transition; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function getTransition(): string |
||
| 30 | { |
||
| 31 | return $this->transition; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param string $transition |
||
| 36 | */ |
||
| 37 | public function setTransition(string $transition): void |
||
| 40 | } |
||
| 41 | } |
||
| 42 |