TestCase   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 4
c 1
b 0
f 1
dl 0
loc 9
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 5 1
1
<?php
2
3
namespace EasyHttp\LayerContracts\Tests;
4
5
use Faker\Factory;
6
use Faker\Generator;
7
8
abstract class TestCase extends \PHPUnit\Framework\TestCase
9
{
10
    protected Generator $faker;
11
12
    public function setUp(): void
13
    {
14
        $this->faker = Factory::create();
15
16
        parent::setUp();
17
    }
18
}
19