Lines Matching refs:current
61 $current = $this->getLocalVersion();
63 …$current['file'] = ($current['type'] === 'rc' ? 'rc' : '') . $current['date'] . $current['hotfix'];
66 foreach ($current as $k => $v) {
76 $current = $this->getUpstreamVersion();
87 if (!$next['codename']) $next['codename'] = $current['codename'];
95 $next['update'] = floatval($current['update']) + 0.1;
96 $next['codename'] = $current['codename'];
97 $next['date'] = $current['date'];
98 $next['hotfix'] = $this->increaseHotfix($current['hotfix']);
100 $next['update'] = intval($current['update']) + 1;
107 if ($current['date'] > $next['date']) {
111 if ($current['type'] === 'rc' && $next['type'] === 'hotfix') {
117 …if ($current['type'] === 'stable' && $next['type'] !== 'hotfix' && $current['codename'] === $next[…
128 foreach ($current as $k => $v) {