Lines Matching defs:info
109 * Parses a changelog line into its components and save revision info to the cache pool
116 $info = static::parseLogLine($value);
117 if (is_array($info)) {
118 $info['mode'] = $this->getMode();
119 $this->cache[$this->id][$info['date']] ??= $info;
120 return $info;
133 * @param bool $retrieveCurrentRevInfo allows to skip for getting other revision info in the
297 $info = $this->parseAndCacheLogLine($lines[$i]);
298 if (is_array($info)) {
299 $revs[] = $info['date'];
343 $info = [];
354 $info = $this->parseAndCacheLogLine($lines[$i]);
355 if (is_array($info)) {
357 if (($direction > 0 && $info['date'] > $rev) || ($direction < 0 && $info['date'] < $rev)) {
360 $relativeRev = $info['date'];
368 && ($info['date'] == $rev || ($revCounter > 0 && !$relativeRev))
426 $info = $this->parseAndCacheLogLine($lines[$i]);
427 if (is_array($info)) {
428 $revs1[] = $info['date'];
504 $info = $this->parseAndCacheLogLine($line);
505 if (is_array($info)) {
506 $revs[] = $info['date'];
507 if ($info['date'] >= $rev) {
548 $info = $this->parseAndCacheLogLine($lines[$i]);
549 if (is_array($info)) {
550 $revs[] = $info['date'];
574 * change that had already recorded in the changelog is returned as current change info.