Files
TwoFactorAuth/tests/Providers/Rng/NeedsRngLengths.php
T
2022-12-07 23:10:13 +01:00

10 lines
167 B
PHP

<?php declare(strict_types=1);
namespace Tests\Providers\Rng;
trait NeedsRngLengths
{
/** @var array */
protected $rngTestLengths = array(1, 16, 32, 256);
}