Skip to content

Commit

Permalink
update readMe and change log
Browse files Browse the repository at this point in the history
  • Loading branch information
mkwsra committed Nov 28, 2023
1 parent 5439bc4 commit 8e77814
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v3.5.9

* feat: adding a way to get a list of blocked Friendships by current user by @mercExec
* feat: adding a way to get a list of blocked Friendships by others by @mercExec

## v3.5.8

* feat: adding get pending count function by @prawn185
Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,12 +265,25 @@ $user->getDeniedFriendships();
$user->getDeniedFriendships($perPage = 20, $fields = ['id','name']);
```

#### Get a list of blocked Friendships
#### Get a list of blocked Friendships in total

```php
$user->getBlockedFriendships();
$user->getBlockedFriendships($perPage = 20, $fields = ['id','name']);
```
#### Get a list of blocked Friendships by current user

```php
$user->getBlockedFriendshipsByCurrentUser();
$user->getBlockedFriendshipsByCurrentUser($perPage = 20, $fields = ['id','name']);
```

#### Get a list of blocked Friendships by others

```php
$user->getBlockedFriendshipsByOtherUsers();
$user->getBlockedFriendshipsByOtherUsers($perPage = 20, $fields = ['id','name']);
```

#### Get a list of pending Friend Requests

Expand Down

0 comments on commit 8e77814

Please sign in to comment.