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