PropertyDocSniff
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 2
dl 0
loc 4
c 0
b 0
f 0
ccs 0
cts 0
cp 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BestIt\Sniffs\Commenting;
6
use BestIt\Sniffs\VariableRegistrationTrait;
7
8
/**
9
 * Checks the structure of the property summary.
10
 *
11
 * @author blange <[email protected]>
12
 * @package BestIt\Sniffs\Commenting
13
 */
14
class PropertyDocSniff extends AbstractDocSniff
15
{
16
    use VariableRegistrationTrait;
17
}
18