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