Skip to content

Commit

Permalink
fix: getResponse return type
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmanders committed Aug 14, 2024
1 parent 716acb2 commit 4be7bbf
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 4be7bbf

Please sign in to comment.