File "TokenAuthenticated-20250317101537.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/laravel/sanctum/src/Events/TokenAuthenticated-20250317101537.php
File size: 442 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}