Changeset View
Changeset View
Standalone View
Standalone View
src/toolset/ArcanistToolset.php
- This file was added.
| <?php | |||||
| abstract class ArcanistToolset extends Phobject { | |||||
| final public function getToolsetKey() { | |||||
| return $this->getPhobjectClassConstant('TOOLSETKEY'); | |||||
| } | |||||
| final public static function newToolsetMap() { | |||||
| $toolsets = id(new PhutilClassMapQuery()) | |||||
| ->setAncestorClass(__CLASS__) | |||||
| ->setUniqueMethod('getToolsetKey') | |||||
| ->execute(); | |||||
| return $toolsets; | |||||
| } | |||||
| public function getToolsetArguments() { | |||||
| return array(); | |||||
| } | |||||
| } | |||||