Conditions | 3 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function __construct(string $message, Saml2User $saml2User = null) |
||
15 | { |
||
16 | if ($saml2User && config('saml2.debug')) { |
||
|
|||
17 | Log::debug('[Saml2] User resolution failed', [ |
||
18 | 'message' => $message, |
||
19 | 'attributes' => $saml2User->getAttributes() |
||
20 | ]); |
||
21 | } |
||
22 | |||
23 | parent::__construct($message); |
||
24 | } |
||
26 |