| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | class MfaRequiredException extends Exception |
||
| 29 | { |
||
| 30 | private MfaProviderManifestInterface $provider; |
||
| 31 | |||
| 32 | public function __construct(MfaProviderManifestInterface $provider, $code = 0, $message = '', \Throwable $previous = null) |
||
| 33 | { |
||
| 34 | $this->provider = $provider; |
||
| 35 | parent::__construct($message, $code, $previous); |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getProvider(): MfaProviderManifestInterface |
||
| 41 | } |
||
| 42 | } |
||
| 43 |