/**
  * @return GoogleDriveApi
  * @throws \OldTown\GitLabTools\Analizator\Google\Exception\RuntimeException
  * @throws \InvalidArgumentException
  * @throws \Google_Exception
  */
 public function getGoogleDriveApi()
 {
     if (null === $this->googleDriveApi) {
         $this->googleDriveApi = $this->googleDriveApiBuilder->setClient($this->getGoogleClient())->build();
     }
     return $this->googleDriveApi;
 }