2017-03-05 00:43:00 +01:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
|
|
|
|
$args = new PhutilArgumentParser($argv);
|
|
|
|
$args->setSynopsis(<<<EOSYNOPSIS
|
2019-08-20 22:50:03 +02:00
|
|
|
**user** __command__ [__options__]
|
|
|
|
Modify user accounts to regain access to an install.
|
2017-03-05 00:43:00 +01:00
|
|
|
|
|
|
|
EOSYNOPSIS
|
|
|
|
);
|
|
|
|
$args->parseStandardArguments();
|
|
|
|
|
|
|
|
$workflows = id(new PhutilClassMapQuery())
|
|
|
|
->setAncestorClass('PhabricatorPeopleManagementWorkflow')
|
|
|
|
->execute();
|
|
|
|
$workflows[] = new PhutilHelpArgumentWorkflow();
|
|
|
|
$args->parseWorkflows($workflows);
|