| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 16 | public function __construct($message = "", $code = 0, Throwable $previous = null) |
|
| 24 | { |
||
| 25 | 16 | parent::__construct($message, $code, $previous); |
|
| 26 | |||
| 27 | 16 | if (config('permission.log_registration_exception')) { |
|
| 28 | 16 | $logger = app('log'); |
|
| 29 | 16 | $logger->alert($message); |
|
| 30 | } |
||
| 31 | 16 | } |
|
| 32 | } |
||
| 33 |