| Total Complexity | 6 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class BashCommand implements CommandInterface |
||
| 13 | { |
||
| 14 | public function __construct( |
||
| 18 | } |
||
| 19 | |||
| 20 | public static function getTitle(): string |
||
| 23 | } |
||
| 24 | |||
| 25 | public static function getDescription(): string |
||
| 26 | { |
||
| 27 | return 'Runs any commands from the project root.'; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function run(): CommandResponse |
||
| 54 | ); |
||
| 55 | } |
||
| 57 |