for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MadWeb\SocialAuth\Events;
use Illuminate\Contracts\Auth\Authenticatable;
class SocialUserAuthenticated extends SocialEvent
{
/**
* @var Authenticatable
*/
public $user;
* SocialUserAuthenticated constructor.
* @param Authenticatable $user
public function __construct(Authenticatable $user)
$this->user = $user;
}