Completed
Pull Request — master (#4)
by Nick
05:39
created

ManagerBase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Acquia\LiftClient\Manager;
4
5
abstract class ManagerBase
6
{
7
8
  /**
9
   * @var \Acquia\LiftClient\Lift
10
   *   The Acquia Lift Client
11
   */
12
  protected $client;
13
14
  /**
15
   * @param \Acquia\LiftClient\Lift $client
16
   *   The Acquia Lift Client
17
   */
18 48
  public function __construct($client)
19
  {
20 48
    $this->client = $client;
21 48
  }
22
}
23