From 9fab2e77c47d63c93992e412182a8463334fa8f7 Mon Sep 17 00:00:00 2001 From: tim gavin Date: Tue, 6 Jun 2023 16:58:23 -0400 Subject: [PATCH] Apply fixes from StyleCI (#4) --- src/LaravelFollow.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/LaravelFollow.php b/src/LaravelFollow.php index cd9d3c5..89aa502 100644 --- a/src/LaravelFollow.php +++ b/src/LaravelFollow.php @@ -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 @@ -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 @@ -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 @@ -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