pocketmine\event\player\PlayerCommandPreprocessEvent::__construct PHP Метод

__construct() публичный Метод

public __construct ( Player $player, string $message )
$player pocketmine\Player
$message string
    public function __construct(Player $player, $message)
    {
        $this->player = $player;
        $this->message = $message;
    }

Usage Example

 public function __construct(Player $player, $message, NailedKeyboard $plugin)
 {
     parent::__construct($player, $message);
     $this->plugin = $plugin;
 }