From f2fe0a2e1da8a0c20c20c4f8920f60b499c0c4e0 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 26 Feb 2015 12:45:29 +1030 Subject: [PATCH] Fix setting user to null, for now Still need to flesh out the exact purpose/use of the Actor class --- src/Core/Support/Actor.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Core/Support/Actor.php b/src/Core/Support/Actor.php index 9c36d4a38..4be200111 100755 --- a/src/Core/Support/Actor.php +++ b/src/Core/Support/Actor.php @@ -1,6 +1,5 @@ user ?: new Guest; } - public function setUser(User $user) + public function setUser($user) { $this->user = $user; }