Avoid variables with short names like $a. Configured minimum length is 2.
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.
Avoid variables with short names like $b. Configured minimum length is 2.
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.
Avoid variables with short names like $c. Configured minimum length is 2.
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...
24
25
/**
26
* FakeConstructable constructor.
27
*
28
* @param mixed|null $a
29
* @param mixed|null $b
30
* @param mixed|null $c
31
*/
32
public function __construct($a = null, $b = null, $c = null)
Avoid variables with short names like $a. Configured minimum length is 2.
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.
Avoid variables with short names like $b. Configured minimum length is 2.
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.
Avoid variables with short names like $c. Configured minimum length is 2.
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.