mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
21 lines
333 B
PHP
21 lines
333 B
PHP
|
<?php
|
||
|
|
||
|
final class HarbormasterOtherBuildStepGroup
|
||
|
extends HarbormasterBuildStepGroup {
|
||
|
|
||
|
const GROUPKEY = 'harbormaster.other';
|
||
|
|
||
|
public function getGroupName() {
|
||
|
return pht('Other Build Steps');
|
||
|
}
|
||
|
|
||
|
public function getGroupOrder() {
|
||
|
return 9000;
|
||
|
}
|
||
|
|
||
|
public function shouldShowIfEmpty() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
}
|