Completed
Push — work-fleets ( 094cef...4ec5b3 )
by SuperNova.WS
06:12
created

V2FleetContainer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 7
rs 10
c 1
b 0
f 0
ccs 0
cts 2
cp 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
/**
3
 * Created by Gorlum 17.08.2016 22:09
4
 */
5
6
namespace V2Fleet;
7
8
9
use V2Unit\V2UnitList;
10
11
/**
12
 * Class V2FleetContainer
13
 *
14
 * @property mixed      $dbId
15
 * @property mixed      $ownerId
16
 * @property int        $missionType
17
 * @property int        $timeDeparture
18
 * @property int        $timeArrive
19
 * @property int        $timeComplete
20
 * @property int        $timeReturn
21
 *
22
 * @property V2UnitList $units
23
 *
24
 * @package V2Fleet
25
 */
26
class V2FleetContainer extends \EntityContainer {
27
28
  public function __construct() {
29
//    $this->assignAccessor();
0 ignored issues
show
Unused Code Comprehensibility introduced by
72% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
30
  }
31
32
}
33