| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class DebugMessage extends MessageBase |
||
| 14 | { |
||
| 15 | public static function getState(DebugLinkGetState $getState): self |
||
| 20 | ); |
||
| 21 | } |
||
| 22 | public static function stop(DebugLinkStop $stop) |
||
| 23 | { |
||
| 24 | return new self( |
||
| 25 | MessageType::MessageType_DebugLinkStop(), |
||
| 26 | $stop |
||
| 27 | ); |
||
| 28 | } |
||
| 29 | public static function decision(DebugLinkDecision $decision) |
||
| 30 | { |
||
| 31 | return new self( |
||
| 32 | MessageType::MessageType_DebugLinkDecision(), |
||
| 33 | $decision |
||
| 34 | ); |
||
| 35 | } |
||
| 36 | |||
| 37 | public static function memoryRead(DebugLinkMemoryRead $memoryRead): self |
||
| 42 | ); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |