Function Hook_Health_Check->stateCheckSkipped

Definitions

sources/health_check.php

  • State that a check was skipped.This is only called when we would like to run a check but something is stopping us; we do not call it for checks that don't make any sense to run for any reason.
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$message string No No required parameter N/A N/A The reason for the skip, with possible details of exactly what was skipped

Preview

Code (PHP)

/**
 * State that a check was skipped.This is only called when we would like to run a check but something is stopping us; we do not call it for checks that don't make any sense to run for any reason.
 *
 * @param  string $message The reason for the skip, with possible details of exactly what was skipped
 */

protected function stateCheckSkipped(string $message)