Skip to content
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (24 loc) · 409 Bytes

README.md

File metadata and controls

30 lines (24 loc) · 409 Bytes

CommandHandler

Basic Command Handler In PhP

How To Use

  • To Initialize CommandHandler
CommandHandler::init();
  • Example Of Commands
"example" => new ExampleCommand()
  • When Initializing Use
use YourName\Abc;

Todo

  • Change Namespace When Using

Note

  • Must Initizalize Handler On Enable
public function onEnable(): void
{
  CommandHandler::init();
}