We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46d6e9c commit 793e8bcCopy full SHA for 793e8bc
src/Events/Event.php
@@ -6,9 +6,15 @@
6
7
class Event
8
{
9
- public int $followingId;
+ /**
10
+ * @var int|string
11
+ */
12
+ public $followingId;
13
- public int $followerId;
14
15
16
17
+ public $followerId;
18
19
protected UserFollower $relation;
20
src/UserFollower.php
@@ -7,8 +7,8 @@
use Overtrue\LaravelFollow\Events\Unfollowed;
/**
- * @property int $following_id;
- * @property int $follower_id;
+ * @property int|string $following_id;
+ * @property int|string $follower_id;
*/
class UserFollower extends Pivot
0 commit comments