/** * Constructor * @param GoogleClient $client */ public function __construct(GoogleClient $client) { $this->client = $client; parent::__construct($client->getGoogleClient()); }
/** * Constructor * @param GoogleClient $client */ public function __construct(GoogleClient $gClient) { parent::__construct($gClient->getGoogleClient()); $this->gClient = $gClient; }
/** * Constructor * @param GoogleClient $client */ public function __construct(GoogleClient $client, $doctrine) { $this->client = $client; $this->doctrine = $doctrine; parent::__construct($client->getGoogleClient()); }