Lines Matching full:hotfix
12 const TYPES = ['stable', 'hotfix', 'rc'];
63 …$current['file'] = ($current['type'] === 'rc' ? 'rc' : '') . $current['date'] . $current['hotfix'];
83 'hotfix' => '',
94 if ($next['type'] === 'hotfix') {
98 $next['hotfix'] = $this->increaseHotfix($current['hotfix']);
111 if ($current['type'] === 'rc' && $next['type'] === 'hotfix') {
117 …if ($current['type'] === 'stable' && $next['type'] !== 'hotfix' && $current['codename'] === $next[…
121 $next['version'] = $next['date'] . ($next['type'] === 'rc' ? 'rc' : $next['hotfix']);
124 $next['hotfix'] .
174 * Increase the hotfix letter
178 * @param string $hotfix
181 protected function increaseHotfix($hotfix) argument
183 if (empty($hotfix)) return 'a';
184 return substr($hotfix, 0, -1) . chr(ord($hotfix) + 1);