| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | 1 | public function isFieldEqual(string $attributeId, $value, array $extraData = []): bool |
|
| 8 | { |
||
| 9 | 1 | $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 | 1 | return $attributeManager->retrieveAttribute( |
|
| 12 | 1 | $attributeManager->getAttribute($attributeId), |
|
| 13 | 1 | null, |
|
| 14 | 1 | $extraData['resource'] |
|
| 15 | 1 | ) === $value; |
|
| 16 | } |
||
| 17 | } |
||
| 18 |