MigrationsNotExist   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 11
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
namespace Triadev\EsMigration\Exception;
3
4
use Throwable;
5
6
class MigrationsNotExist extends \Exception
7
{
8
    /**
9
     * MigrationsNotExist constructor.
10
     * @param string $message
11
     * @param int $code
12
     * @param Throwable|null $previous
13
     */
14 1
    public function __construct(string $message = "", int $code = 0, Throwable $previous = null)
15
    {
16 1
        parent::__construct($message, $code, $previous);
17 1
    }
18
}
19