Industry   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 19
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setSpecialities() 0 4 1
A setTeams() 0 4 1
1
<?php
2
namespace Perry\Representation\Eve\v1;
3
4
use \Perry\Representation\Reference as Reference;
5
use \Perry\Representation\Uri as Uri;
6
use \Perry\Representation\Base as Base;
7
8
class Industry extends Base
9
{
10
    public $specialities;
11
12
    public $teams;
13
14
    // by Warringer\Types\Reference
15
    public function setSpecialities($specialities)
16
    {
17
        $this->specialities = new Reference($specialities);
18
    }
19
20
    // by Warringer\Types\Reference
21
    public function setTeams($teams)
22
    {
23
        $this->teams = new Reference($teams);
24
    }
25
26
}
27