| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class SimpleTenantProvider implements TenantProviderInterface |
||
| 20 | { |
||
| 21 | public function __construct(private TenantInterface $tenant) |
||
| 23 | } |
||
| 24 | |||
| 25 | public function setTenant(TenantInterface $tenant): void |
||
| 27 | // TODO: Implement setTenant() method. |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getCurrentTenant(bool $refresh = false): TenantInterface |
||
| 35 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.