This commit is contained in:
foobar
2022-08-21 21:39:06 +02:00
commit 27c1969aaa
7354 changed files with 897064 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
namespace Laravel\Sanctum\Events;
class TokenAuthenticated
{
/**
* The personal access token that was authenticated.
*
* @var \Laravel\Sanctum\PersonalAccessToken
*/
public $token;
/**
* Create a new event instance.
*
* @param \Laravel\Sanctum\PersonalAccessToken $token
* @return void
*/
public function __construct($token)
{
$this->token = $token;
}
}