Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KnosTx authored Dec 20, 2024
1 parent 26e0e0b commit a42304f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/VideoStreamConnectPacket.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,7 @@ class VideoStreamConnectPacket extends DataPacket implements ClientboundPacket{
* @generate-create-func
* @phpstan-param VideoStreamAction::* $action
*/
public static function create(
string $address,
float $screenshotFrequency,
int $action,
int $width,
int $height
) : self {
public static function create(string $address, float $screenshotFrequency, int $action, int $width, int $height) : self{
$result = new self;
$result->address = $address;
$result->screenshotFrequency = $screenshotFrequency;
Expand Down

0 comments on commit a42304f

Please sign in to comment.