| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | trait EntityIdentificationTrait |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Verify the identity of a user or a client entity. |
||
| 24 | * |
||
| 25 | * @param string $correctIdentification The correct identification information. |
||
| 26 | * @param string $suppliedIdentification The supplied identification information. |
||
| 27 | * |
||
| 28 | * @return bool The identity verification result. |
||
| 29 | * @throws \Exception Validation errors. |
||
| 30 | */ |
||
| 31 | public function identifyEntity($correctIdentification, $suppliedIdentification) |
||
| 46 |