You are here

public function DeployLogger::getLogItemsSinceTimestamp in Build Hooks 8.2

Same name and namespace in other branches
  1. 3.x src/DeployLogger.php \Drupal\build_hooks\DeployLogger::getLogItemsSinceTimestamp()

Gets a list of the last relevant log items after a certain timestamp.

Parameters

int $timestamp: The timestamp after which to get the elements.

Return value

array An array of log items.

File

src/DeployLogger.php, line 171

Class

DeployLogger
Class DeployLogger.

Namespace

Drupal\build_hooks

Code

public function getLogItemsSinceTimestamp($timestamp) {
  @trigger_error(__METHOD__ . ' is deprecated in build_hooks:8.x-2.4 and is removed from build_hooks:8.x-3.0. There is no replacement, instead work with the deployment content entity. See https://www.drupal.org/node/3172327', E_USER_DEPRECATED);
  return [];
}