IndustryJobUpdater   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 5
Bugs 0 Features 3
Metric Value
wmc 1
c 5
b 0
f 3
lcom 0
cbo 1
dl 0
loc 7
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A doApiCall() 0 4 1
1
<?php
2
namespace Tarioch\EveapiFetcherBundle\Component\EveApi\Corp;
3
4
use JMS\DiExtraBundle\Annotation as DI;
5
use Pheal\Pheal;
6
7
/**
8
 * @DI\Service("tarioch.eveapi.corp.IndustryJobs")
9
 */
10
class IndustryJobUpdater extends AbstractIndustryJobUpdater
11
{
12
    protected function doApiCall(Pheal $pheal, $charId)
13
    {
14
        return $pheal->corpScope->IndustryJobs(array('characterID' => $charId));
15
    }
16
}
17