Closed Rexeh closed 6 years ago
Have you tried adjusting the SSL settings mentioned in the Readme? This resolve the issue for me.
Issue has been resolved. Code was actually all sound, however deployment script wasn't doing composer update. So was running new code on a old library!
So for future reference, if you see this check the installed vendor is the correct version on your server.
Having some issues with the plugin on PHP 7 and protected scopes. Using your example with some modifications, but those are not causing the issues.
Locally, development works perfect, on deployment to production it is no longer working, failing with the below
FatalThrowableError in SteamAuthController.php line 56: Cannot access protected property Invisnik\LaravelSteamAuth\SteamInfo::$steamID64
`<?php namespace App\Http\Controllers\Auth;
//use App\Http\Requests\Request; use App\Http\Controllers\Controller; use App\User; use Illuminate\Support\Facades\Auth; use Request; use Invisnik\LaravelSteamAuth\SteamAuth;
class SteamAuthController extends Controller {
}`
Any ideas what is causing this?