InventoryTransformer   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: manuel
5
 * Date: 11/12/16
6
 * Time: 1:02.
7
 */
8
9
namespace Scool\Inventory\Presenters;
10
11
class InventoryTransformer
12
{
13
    /**
14
     * InventoryTransformer constructor.
15
     */
16
    public function __construct()
17
    {
18
    }
19
}
20