You are here

public function Watchdog404::getResultInfo in Site Audit 8.3

.

Overrides SiteAuditCheckBase::getResultInfo

1 call to Watchdog404::getResultInfo()
Watchdog404::getResultWarn in src/Plugin/SiteAuditCheck/Watchdog404.php
.

File

src/Plugin/SiteAuditCheck/Watchdog404.php, line 27

Class

Watchdog404
Provides the Watchdog404 Check.

Namespace

Drupal\site_audit\Plugin\SiteAuditCheck

Code

public function getResultInfo() {
  return $this
    ->t('@count_404 pages not found (@percent_404%).', [
    '@count_404' => $this->registry->count_404,
    '@percent_404' => $this->registry->percent_404,
  ]);
}