Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | class RandomFormatter implements Formatter |
||
11 | { |
||
12 | /** |
||
13 | * The default random length. |
||
14 | * |
||
15 | * @var int |
||
16 | */ |
||
17 | private $length; |
||
18 | |||
19 | /** |
||
20 | * Create a new class instance. |
||
21 | * |
||
22 | * @param int $length |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __construct(int $length = 32) |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | public function format($value = null) |
||
38 |