/**
  * CommonReport constructor.
  *
  * @param GoogleSheetsStorageBuilder $builder
  *
  */
 public function __construct(GoogleSheetsStorageBuilder $builder)
 {
     $this->googleClientBuilder = $builder->getGoogleClientBuilder();
     $this->googleDriveApiBuilder = $builder->getGoogleDriveApiBuilder();
     $this->googleSheetsApiBuilder = $builder->getGoogleSheetsApiBuilder();
     $this->googleClientSecretPath = $builder->getGoogleClientSecretPath();
     $this->reportDir = $builder->getReportDir();
     $this->reportFile = $builder->getReportFile();
 }