UserComparison   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 1
cbo 3
dl 0
loc 12
ccs 6
cts 6
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A isFieldEqual() 0 9 1
1
<?php
2
3
namespace PhpAbac\Comparison;
4
5
class UserComparison extends AbstractComparison
6
{
7 2
    public function isFieldEqual(string $attributeId, $value, array $extraData = []): bool
8
    {
9 2
        $attributeManager = $this->comparisonManager->getAttributeManager();
10
        // Create an attribute out of the extra data we have and compare its retrieved value to the expected one
11 2
        return $attributeManager->retrieveAttribute(
12 2
            $attributeManager->getAttribute($attributeId),
13 2
            $extraData['user']
14 2
        ) === $value;
15
    }
16
}
17