Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Commit bbf321b

Browse files
Fix typo in StoreClientIdInSession (#10)
1 parent 2c11a11 commit bbf321b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Http/StoreClientIdInSession.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ class StoreClientIdInSession
1010
/**
1111
* Stores the posted Client ID in the session.
1212
*/
13-
public function __invoke(Request $request, ClientIdSession $clientIsSession): JsonResponse
13+
public function __invoke(Request $request, ClientIdSession $clientIdSession): JsonResponse
1414
{
1515
$data = $request->validate(['id' => 'required|string|max:255']);
1616

17-
$clientIsSession->update($data['id']);
17+
$clientIdSession->update($data['id']);
1818

1919
return response()->json();
2020
}

0 commit comments

Comments
 (0)