ok

Mini Shell

Direktori : /home2/selectio/public_html/3-idiots/vendor/laravel/passport/src/Events/
Upload File :
Current File : /home2/selectio/public_html/3-idiots/vendor/laravel/passport/src/Events/RefreshTokenCreated.php

<?php

namespace Laravel\Passport\Events;

class RefreshTokenCreated
{
    /**
     * The newly created refresh token ID.
     *
     * @var string
     */
    public $refreshTokenId;

    /**
     * The access token ID.
     *
     * @var string
     */
    public $accessTokenId;

    /**
     * Create a new event instance.
     *
     * @param  string  $refreshTokenId
     * @param  string  $accessTokenId
     * @return void
     */
    public function __construct($refreshTokenId, $accessTokenId)
    {
        $this->accessTokenId = $accessTokenId;
        $this->refreshTokenId = $refreshTokenId;
    }
}

Zerion Mini Shell 1.0