22 lines
		
	
	
		
			544 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			22 lines
		
	
	
		
			544 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
|   | #!/usr/bin/env php
 | ||
|  | <?php | ||
|  | 
 | ||
|  | $root = dirname(dirname(dirname(__FILE__))); | ||
|  | require_once $root.'/scripts/__init_script__.php'; | ||
|  | 
 | ||
|  | $args = new PhutilArgumentParser($argv); | ||
|  | $args->setTagline(pht('manage Nuance')); | ||
|  | $args->setSynopsis(<<<EOSYNOPSIS | ||
|  | **nuance** __command__ [__options__] | ||
|  |   Manage and debug Nuance. | ||
|  | 
 | ||
|  | EOSYNOPSIS | ||
|  |   ); | ||
|  | $args->parseStandardArguments(); | ||
|  | 
 | ||
|  | $workflows = id(new PhutilClassMapQuery()) | ||
|  |   ->setAncestorClass('NuanceManagementWorkflow') | ||
|  |   ->execute(); | ||
|  | $workflows[] = new PhutilHelpArgumentWorkflow(); | ||
|  | $args->parseWorkflows($workflows); |