You are here

public function ExtensionsCount::getResultWarn in Site Audit 8.3

.

Overrides SiteAuditCheckBase::getResultWarn

File

src/Plugin/SiteAuditCheck/ExtensionsCount.php, line 41

Class

ExtensionsCount
Provides the ExtensionsCount Check.

Namespace

Drupal\site_audit\Plugin\SiteAuditCheck

Code

public function getResultWarn() {
  return $this
    ->t('There are @extension_count extensions enabled; that\'s higher than the average.', [
    '@extension_count' => $this->registry->extension_count,
  ]);
}