/
home
/
techb158
/
ileadtechnology.com
/
vendor
/
laravel
/
passport
/
src
/
Events
/
/home/techb158/ileadtechnology.com/vendor/laravel/passport/src/Events
mkdir
upload
Name
Size
Mode
Actions
AccessTokenCreated.php
761
0644
edit
dl
rm
RefreshTokenCreated.php
614
0644
edit
dl
rm
Edit:
/home/techb158/ileadtechnology.com/vendor/laravel/passport/src/Events/AccessTokenCreated.php
(761B)
<?php namespace Laravel\Passport\Events; class AccessTokenCreated { /** * The newly created token ID. * * @var string */ public $tokenId; /** * The ID of the user associated with the token. * * @var string */ public $userId; /** * The ID of the client associated with the token. * * @var string */ public $clientId; /** * Create a new event instance. * * @param string $tokenId * @param string $userId * @param string $clientId * @return void */ public function __construct($tokenId, $userId, $clientId) { $this->userId = $userId; $this->tokenId = $tokenId; $this->clientId = $clientId; } }
Save
cmd:
run