Test Failed
Branch master (967e93)
by Lyal
14:02 queued 11:47
created

UnhandledCheckrWebhook   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Lyal\Checkr\Exceptions;
4
5
class UnhandledCheckrWebhook extends \Exception
6
{
7
    public function __construct($event)
8
    {
9
        $message = 'An unexpected Checkr webhook was sent: '.$event;
10
        parent::__construct($message);
11
    }
12
}
13