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...
18
19
/**
20
* @var int
21
*/
22
protected $count = 0;
23
24
/**
25
* @var int
26
*/
27
protected $pos = 0;
28
29
/**
30
* Cycle constructor.
31
*
32
* @param array $dataset
33
*/
34
1
public function __construct(array $dataset = array()) {
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.