mirror of
https://github.com/RobThree/TwoFactorAuth.git
synced 2026-08-19 01:22:33 +00:00
12 lines
173 B
PHP
12 lines
173 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Providers\Rng;
|
|
|
|
trait NeedsRngLengths
|
|
{
|
|
/** @var array<int> */
|
|
protected $rngTestLengths = array(1, 16, 32, 256);
|
|
}
|