Skip to content

Commit

Permalink
Merge pull request #127 from cloudinary-community/fix/getresponse-ret…
Browse files Browse the repository at this point in the history
…urn-type

fix: getResponse return type
  • Loading branch information
joshmanders authored Aug 14, 2024
2 parents 6f0713d + 4be7bbf commit 434bb1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CloudinaryEngine.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ public function uploadVideo($file, array $options = []): static
}

/**
* @return array
* @return array|ApiResponse
*/
public function getResponse(): array
public function getResponse(): array|ApiResponse
{
return $this->response;
}
Expand Down

0 comments on commit 434bb1f

Please sign in to comment.