Avoid variables with short names like $c. Configured minimum length is 3.
Short variable names may make your code harder to understand. Variable names should
be self-descriptive. This check looks for variable names who are shorter than
a configured minimum.
Loading history...
19
20
/**
21
* The key.
22
*
23
* @var int
24
*/
25
protected $key = 0;
26
27
/**
28
* Combinations constructor.
29
*
30
* @param array $dataset
31
* The dataset
32
* @param int|null $length
33
* The length
34
*/
35
10
public function __construct(array $dataset = [], $length = null)
Avoid variables with short names like $r. Configured minimum length is 3.
Short variable names may make your code harder to understand. Variable names should
be self-descriptive. This check looks for variable names who are shorter than
a configured minimum.
Short variable names may make your code harder to understand. Variable names should be self-descriptive. This check looks for variable names who are shorter than a configured minimum.