src/uTime.php
Avoid variables with short names like $m. Configured minimum length is 3. Open
Open
$m = floor($value % 60);
- Read upRead up
- Exclude checks
ShortVariable
Since: 0.2
Detects when a field, local, or parameter has a very short name.
Example
class Something {
private $q = 15; // VIOLATION - Field
public static function main( array $as ) { // VIOLATION - Formal
$r = 20 + $this->q; // VIOLATION - Local
for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
$r += $this->q;
}
}
}
Source https://phpmd.org/rules/naming.html#shortvariable
The class uTime is not named in CamelCase. Open
Open
class uTime
{
/**
* Return time list
- Read upRead up
- Exclude checks
CamelCaseClassName
Since: 0.2
It is considered best practice to use the CamelCase notation to name classes.
Example
class class_name {
}
Source
Avoid variables with short names like $h. Configured minimum length is 3. Open
Open
$h = floor($value / 60);
- Read upRead up
- Exclude checks
ShortVariable
Since: 0.2
Detects when a field, local, or parameter has a very short name.
Example
class Something {
private $q = 15; // VIOLATION - Field
public static function main( array $as ) { // VIOLATION - Formal
$r = 20 + $this->q; // VIOLATION - Local
for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
$r += $this->q;
}
}
}
Source https://phpmd.org/rules/naming.html#shortvariable
Inline control structures are not allowed Open
Open
if (strlen($m) === 1) $m = '0' . $m;
- Exclude checks
Inline control structures are not allowed Open
Open
if (strlen($h) === 1) $h = '0' . $h;
- Exclude checks
Class name "uTime" is not in camel caps format Open
Open
class uTime
- Exclude checks