for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Acquia\LiftClient\Manager;
abstract class ManagerBase
{
/**
* @var \Acquia\LiftClient\Lift
* The Acquia Lift Client
*/
protected $client;
* @param \Acquia\LiftClient\Lift $client
public function __construct($client)
$this->client = $client;
}