Skip to content

Commit

Permalink
Fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
ghostzero committed Nov 6, 2020
1 parent 264a0d8 commit c85414a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Events/Twitch/RaidEvent.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
class RaidEvent extends Event
{
public Channel $channel;
public string $raidedChannel;
public string $user;
public int $viewers;

public function __construct(Channel $channel, string $raidedChannel, int $viewers)
public function __construct(Channel $channel, string $user, int $viewers)
{
$this->channel = $channel;
$this->raidedChannel = $raidedChannel;
$this->user = $user;
$this->viewers = $viewers;
}
}

0 comments on commit c85414a

Please sign in to comment.