Skip to content

Commit 6600c86

Browse files
refactor: remove default value for getting $id in id()
1 parent f37d7da commit 6600c86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Illuminate/Auth/Guard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public function id()
166166
{
167167
if ($this->loggedOut) return;
168168

169-
$id = $this->session->get($this->getName(), $this->getRecallerId());
169+
$id = $this->session->get($this->getName());
170170

171171
if (is_null($id) && $this->user())
172172
{

0 commit comments

Comments
 (0)