Skip to content

Commit

Permalink
initial commit 7
Browse files Browse the repository at this point in the history
  • Loading branch information
datcal committed Sep 16, 2023
1 parent 2edb2eb commit b1f3a82
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/Http/Controllers/SteamAuthController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@

class SteamAuthController extends Controller
{
public function redirectToSteam(): RedirectResponse
public function redirectToSteam(): void
{
return Socialite::driver('steam')->redirect();
$data = Socialite::driver('steam')->redirect();
echo '<pre>';
print_r($data);
echo '</pre>';
}

#[NoReturn]
Expand Down

0 comments on commit b1f3a82

Please sign in to comment.