-
-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1da99b5
commit 98af40d
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,30 @@ | ||
<?php | ||
|
||
/* | ||
* This file is a part of the DiscordPHP project. | ||
* | ||
* Copyright (c) 2015-present David Cole <[email protected]> | ||
* | ||
* This file is subject to the MIT license that is bundled | ||
* with this source code in the LICENSE.md file. | ||
*/ | ||
|
||
namespace Discord\WebSockets\Events; | ||
|
||
use Discord\Parts\Channel\Channel; | ||
use Discord\Parts\Channel\Message; | ||
use Discord\WebSockets\Event; | ||
|
||
/** | ||
* @link https://discord.com/developers/docs/topics/gateway-events#message-poll-vote-remove-message-poll-vote-remove-fields | ||
*/ | ||
class MessagePollVoteRemove extends Event | ||
{ | ||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function handle($data) | ||
{ | ||
// TODO | ||
} | ||
} |