Completed
Pull Request — master (#49)
by
unknown
01:21
created

PivotException   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 6
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace Mtolhuys\LaravelSchematics\Exceptions;
3
4
class PivotException extends \Exception
5
{
6
    public function __construct($message, $code = 0, Exception $previous = null) {
7
        parent::__construct($message);
8
    }
9
}