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

ManagerBase::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 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