`Repository`: Use correct name case for `DateTime::getTimestamp()` in `retrieveGeneralizedTime()` method

This commit is contained in:
raviks789 2023-08-15 08:40:02 +02:00
parent 22c790ea48
commit aa5db51e77
1 changed files with 1 additions and 1 deletions

View File

@ -941,7 +941,7 @@ abstract class Repository implements Selectable
}
try {
return ASN1::parseGeneralizedTime($value)->getTimeStamp();
return ASN1::parseGeneralizedTime($value)->getTimestamp();
} catch (InvalidArgumentException $e) {
Logger::debug(sprintf('Repository "%s": %s', $this->getName(), $e->getMessage()));
}