| Conditions | 3 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 51 | public function execute(): ServerResponse |
||
| 52 | { |
||
| 53 | // Conversation logic removed. |
||
| 54 | // Try to execute any deprecated system commands. |
||
| 55 | if (self::$execute_deprecated && $deprecated_system_command_response = $this->executeDeprecatedSystemCommand()) { |
||
| 56 | return $deprecated_system_command_response; |
||
| 57 | } |
||
| 58 | |||
| 59 | return Request::emptyResponse(); |
||
| 62 |