public function DeployLogger::getLogItemsSinceTimestamp in Build Hooks 3.x
Same name and namespace in other branches
- 8.2 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
- Defines a class for logging items to be deployed.
Namespace
Drupal\build_hooksCode
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 [];
}