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

ManagerBase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
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 17
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
   * @var \Acquia\LiftClient\Lift
9
   *   The Acquia Lift Client
10
   */
11
  protected $client;
12
13
  /**
14
   * @param \Acquia\LiftClient\Lift $client
15
   *   The Acquia Lift Client
16
   */
17 48
  public function __construct($client)
18
  {
19 48
      $this->client = $client;
20 48
  }
21
}
22