Laragear/TwoFactor

View on GitHub
src/Events/TwoFactorDisabled.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Laragear\TwoFactor\Events;

use Laragear\TwoFactor\Contracts\TwoFactorAuthenticatable;

class TwoFactorDisabled
{
    /**
     * Create a new event instance.
     *
     * @param  \Laragear\TwoFactor\Contracts\TwoFactorAuthenticatable  $user
     * @return void
     */
    public function __construct(public TwoFactorAuthenticatable $user)
    {
        //
    }
}