1 | <?php |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
2 | declare(strict_types=1); |
||
3 | |||
4 | namespace HeroesofAbenez\Chat; |
||
5 | |||
6 | if(false) { |
||
0 ignored issues
–
show
|
|||
7 | /** @deprecated use BaseChatCommand */ |
||
8 | abstract class ChatCommand extends BaseChatCommand { |
||
9 | } |
||
10 | } else { |
||
11 | class_alias(BaseChatCommand::class, ChatCommand::class); |
||
12 | } |
||
13 | ?> |