Skip to content

Commit

Permalink
Apply fixes from StyleCI (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
timgavin authored Jun 6, 2023
1 parent c62ef03 commit 9fab2e7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/LaravelFollow.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public function getFollowingAndFollowersIds(): array
/**
* Caches IDs of the users a user is following.
*
* @param mixed $duration
* @param mixed $duration
* @return void
*/
public function cacheFollowing(mixed $duration = null): void
Expand All @@ -166,7 +166,7 @@ public function cacheFollowing(mixed $duration = null): void
/**
* Caches IDs of the users who are following a user.
*
* @param mixed|null $duration
* @param mixed|null $duration
* @return void
*/
public function cacheFollowers(mixed $duration = null): void
Expand All @@ -184,6 +184,7 @@ public function cacheFollowers(mixed $duration = null): void
* Returns the cached IDs of the users a user is following.
*
* @return array
*
* @throws
*/
public function getFollowingCache(): array
Expand All @@ -195,6 +196,7 @@ public function getFollowingCache(): array
* Returns the cached IDs of the users who are followers a user.
*
* @return array
*
* @throws
*/
public function getFollowersCache(): array
Expand Down

0 comments on commit 9fab2e7

Please sign in to comment.