Skip to content

Commit

Permalink
Set parameter types at YoutubeClientHeaders.
Browse files Browse the repository at this point in the history
  • Loading branch information
altin7m committed Mar 7, 2024
1 parent 12880ea commit 34cb6fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/YoutubeClientHeaders.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public function getClientName(): string
return $this->clientName;
}

public function setClientName($clientName): void
public function setClientName(string $clientName): void
{
$this->clientName = $clientName;
}
Expand All @@ -22,7 +22,7 @@ public function getClientVersion(): string
return $this->clientVersion;
}

public function setClientVersion($clientVersion): void
public function setClientVersion(string $clientVersion): void
{
$this->clientVersion = $clientVersion;
}
Expand Down

0 comments on commit 34cb6fc

Please sign in to comment.