Completed
Push — master ( 7b6a9e...621ea2 )
by Nick
15:23
created

ManagerBase   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 17
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
  public function __construct($client)
18
  {
19
      $this->client = $client;
20
  }
21
}
22