Passed
Pull Request — master (#6)
by BENOIT
07:46
created

random_int()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 2
dl 0
loc 5
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace BenTools\StringCombinations;
4
5
require_once __DIR__ . '/StringCombinations.php';
6
7
/**
8
 * @param string|array $charset
9
 * @return StringCombinations
10
 */
11
function string_combinations($charset, int $min = 1, ?int $max = null, string $glue = ''): StringCombinations
12
{
13
    return new StringCombinations($charset, $min, $max, $glue);
14
}
15