| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | trait IdentityUuid |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Set identity uuid |
||
| 12 | * |
||
| 13 | * @param string $identityUuid |
||
| 14 | * @return object |
||
| 15 | */ |
||
| 16 | public function setIdentityUuid(?string $identityUuid) |
||
|
|
|||
| 17 | { |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get identity uuid |
||
| 22 | * |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function getIdentityUuid(): ?string |
||
| 28 | } |
||
| 29 | } |
||
| 30 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.