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

fact()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 3
eloc 5
nc 3
nop 1
dl 0
loc 9
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