Failed Conditions
Push — refactor/improve-static-analys... ( bdf823...46faab )
by Bas
10:08
created

TestCase::setUpTraits()   B

Complexity

Conditions 7
Paths 64

Size

Total Lines 35
Code Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 56

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 14
c 1
b 0
f 0
dl 0
loc 35
ccs 0
cts 15
cp 0
rs 8.8333
cc 7
nc 64
nop 0
crap 56
1
<?php
2
3
declare(strict_types=1);
4
5
namespace LaravelFreelancerNL\Aranguent\Testing;
6
7
use Illuminate\Foundation\Testing\TestCase as IlluminateTestCase;
8
9
abstract class TestCase extends IlluminateTestCase
10
{
11
    use WithArangoDb;
12
13
}
14