/**
  * Build message text
  * Determine which notification and data to display
  *
  * @return string
  */
 public function getText()
 {
     return implode('<br><br>', $this->moduleChecks->getModuleCheckErrors());
 }
 /**
  * Get all notices  that should display when tax config is saved
  *
  * @return array
  */
 protected function getNotices()
 {
     $notices = array();
     $notices = array_merge($notices, $this->moduleChecks->checkNativeTaxRules());
     return $notices;
 }