string_combinations()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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