Summary: Most scripts detect the relevant workflows automatically. Some scripts, however, use a hardcoded list of workflows. Test Plan: Ran `./bin/aphlict`, `./bin/cache` and `./bin/phd`. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9564
		
			
				
	
	
		
			24 lines
		
	
	
		
			649 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			649 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env php
 | 
						|
<?php
 | 
						|
 | 
						|
$root = dirname(dirname(dirname(dirname(__FILE__))));
 | 
						|
require_once $root.'/scripts/__init_script__.php';
 | 
						|
 | 
						|
PhabricatorAphlictManagementWorkflow::requireExtensions();
 | 
						|
 | 
						|
$args = new PhutilArgumentParser($argv);
 | 
						|
$args->setTagline('manage Aphlict notification server');
 | 
						|
$args->setSynopsis(<<<EOSYNOPSIS
 | 
						|
**aphlict** __command__ [__options__]
 | 
						|
    Manage the Aphlict server.
 | 
						|
 | 
						|
EOSYNOPSIS
 | 
						|
  );
 | 
						|
$args->parseStandardArguments();
 | 
						|
 | 
						|
$workflows = id(new PhutilSymbolLoader())
 | 
						|
  ->setAncestorClass('PhabricatorAphlictManagementWorkflow')
 | 
						|
  ->loadObjects();
 | 
						|
$workflows[] = new PhutilHelpArgumentWorkflow();
 | 
						|
$args->parseWorkflows($workflows);
 |