Changeset View
Changeset View
Standalone View
Standalone View
src/platform/PlatformSymbols.php
<?php | <?php | ||||
final class PlatformSymbols | final class PlatformSymbols | ||||
extends Phobject { | extends Phobject { | ||||
public static function getPlatformClientName() { | public static function getPlatformClientName() { | ||||
return 'Arcanist'; | return 'Arcanist'; | ||||
} | } | ||||
public static function getPlatformServerName() { | public static function getPlatformServerName() { | ||||
return 'Phabricator'; | return 'Phorge'; | ||||
} | } | ||||
public static function getProductNames() { | public static function getProductNames() { | ||||
return array( | return array( | ||||
self::getPlatformClientName(), | self::getPlatformClientName(), | ||||
self::getPlatformServerName(), | self::getPlatformServerName(), | ||||
); | ); | ||||
} | } | ||||
} | } |