DataAwareTrait   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 0
dl 0
loc 15
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A setDataManager() 0 4 1
1
<?php
2
3
namespace Sugarcrm\UpgradeSpec\Data;
4
5
trait DataAwareTrait
6
{
7
    /**
8
     * @var Manager
9
     */
10
    private $dataManager;
11
12
    /**
13
     * @param Manager $dataManager
14
     */
15
    public function setDataManager(Manager $dataManager)
16
    {
17
        $this->dataManager = $dataManager;
18
    }
19
}
20