/**
  * @param array $data
  * @param       $stats_class
  * The stats class name
  *
  * @return StatsReport
  */
 protected function abstractMakeReport(array $data, $stats_class)
 {
     $stats_report = new \ebussola\ads\reports\statsreport\StatsReport();
     $stats_report = new \ebussola\ads\reports\adwords\statsreport\StatsReport($stats_report);
     foreach ($data as $stats) {
         $stats = new $stats_class($stats);
         /** @noinspection PhpUndefinedMethodInspection */
         $stats->refreshValues();
         $stats_report->addStats($stats);
     }
     return $stats_report;
 }