From 6a21ef952dd654e05e3350584dc08bb65974a38e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Aur=C3=A9lio=20Deleu?= Date: Thu, 25 Oct 2018 14:04:01 +0200 Subject: [PATCH] Authenticatable interface does not have getKey() --- src/IncomingEntry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IncomingEntry.php b/src/IncomingEntry.php index 2dc3fba4a..43bf38233 100644 --- a/src/IncomingEntry.php +++ b/src/IncomingEntry.php @@ -135,7 +135,7 @@ public function user($user) ], ]); - $this->tags(['Auth:'.$user->getKey()]); + $this->tags(['Auth:'.$user->getAuthIdentifier()]); return $this; }