rinvex/laravel-auth

View on GitHub
src/Contracts/AuthenticatableTwoFactorContract.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Rinvex\Auth\Contracts;

interface AuthenticatableTwoFactorContract
{
    /**
     * Get the TwoFactor options.
     *
     * @return array|null
     */
    public function getTwoFactor(): ?array;
}