Browse Source

Merge pull request #2045 from shleeable/patch-1

Update FollowerService.php
daniel 5 years ago
parent
commit
a6d99c3c6f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      app/Services/FollowerService.php

+ 3 - 3
app/Services/FollowerService.php

@@ -12,8 +12,8 @@ use App\{
 class FollowerService {
 class FollowerService {
 
 
 	protected $profile;
 	protected $profile;
-	static $follower_prefix = 'px:profile:followers-v1.3:';
-	static $following_prefix = 'px:profile:following-v1.3:';
+	public static $follower_prefix = 'px:profile:followers-v1.3:';
+	public static $following_prefix = 'px:profile:following-v1.3:';
 
 
 	public static function build()
 	public static function build()
 	{
 	{
@@ -68,4 +68,4 @@ class FollowerService {
 		}
 		}
 	}
 	}
 
 
-}
+}