Skip to content

Commit

Permalink
Fixed return type in method setFileUniqueId
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateodioev authored Feb 20, 2023
1 parent ee775b1 commit ad5b629
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Types/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function setFileId(string $fileId): File

public function setFileUniqueId(string $fileUniqueId): File
{
return $this->file_unique_id = $fileUniqueId;
$this->file_unique_id = $fileUniqueId;
return $this;
}

Expand Down

0 comments on commit ad5b629

Please sign in to comment.