| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | trait RelayStateTrait |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * The relay state. |
||
| 18 | */ |
||
| 19 | protected ?string $relayState = null; |
||
| 20 | |||
| 21 | |||
| 22 | /** |
||
| 23 | * Set the RelayState associated with he message. |
||
| 24 | */ |
||
| 25 | public function setRelayState(?string $relayState = null): void |
||
| 29 | } |
||
| 30 | |||
| 31 | |||
| 32 | /** |
||
| 33 | * Get the RelayState associated with the message. |
||
| 34 | */ |
||
| 35 | public function getRelayState(): ?string |
||
| 40 |