IndustryJobHistoryTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 1
cbo 2
dl 0
loc 8
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 5 1
1
<?php
2
namespace Tarioch\EveapiFetcherBundle\Tests\Functional\Api\Corp;
3
4
use Tarioch\EveapiFetcherBundle\Component\EveApi\Corp\IndustryJobHistoryUpdater;
5
6
class IndustryJobHistoryTest extends AbstractIndustryJobTest
7
{
8
    public function setUp()
9
    {
10
        parent::setUp();
11
        $this->api = new IndustryJobHistoryUpdater($this->entityManager);
12
    }
13
}
14