| Total Complexity | 5 |
| Total Lines | 52 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | class PsalmCommand implements CommandInterface |
||
| 13 | { |
||
| 14 | public const COMMAND_NAME = 'analyse/psalm'; |
||
| 15 | |||
| 16 | public function __construct(private Aliases $aliases) |
||
| 17 | { |
||
| 18 | } |
||
| 19 | |||
| 20 | public static function getTitle(): string |
||
| 21 | { |
||
| 22 | return 'Psalm'; |
||
| 23 | } |
||
| 24 | |||
| 25 | public static function getDescription(): string |
||
| 26 | { |
||
| 27 | return ''; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function run(): CommandResponse |
||
| 64 | ) |
||
| 65 | ); |
||
| 66 | } |
||
| 67 | } |
||
| 68 |