You are here

public function ContentFieldCount::getResultWarn in Site Audit 8.3

.

Overrides SiteAuditCheckBase::getResultWarn

File

src/Plugin/SiteAuditCheck/ContentFieldCount.php, line 61

Class

ContentFieldCount
Provides the ContentFieldCount Check.

Namespace

Drupal\site_audit\Plugin\SiteAuditCheck

Code

public function getResultWarn() {
  return $this
    ->t('There are @count total fields, which is higher than average', [
    '@count' => count($this->registry->fields),
  ]);
}