Skip to content

Commit 96f0c64

Browse files
authored
Merge pull request #35 from sillygwailo/fix-getAllContexts
Fix for call to undefined method in PhotosApi->getAllContexts().
2 parents 5a5f9b4 + be71808 commit 96f0c64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PhotosApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function delete($photoId)
9494
*/
9595
public function getAllContexts($photoId)
9696
{
97-
return $this->request('flickr.photos.getAllContexts', ['photo_id' => $photoId]);
97+
return $this->flickr->request('flickr.photos.getAllContexts', ['photo_id' => $photoId]);
9898
}
9999

100100
/**

0 commit comments

Comments
 (0)