Give Phame blogs mutable interact policies
[phabricator.git] / scripts / setup / manage_differential.php
blob30e11d27a9ba98061182257c4ed8ee3bd483ead2
1 #!/usr/bin/env php
2 <?php
4 $root = dirname(dirname(dirname(__FILE__)));
5 require_once $root.'/scripts/__init_script__.php';
7 $args = new PhutilArgumentParser($argv);
8 $args->setTagline(pht('manage hunks'));
9 $args->setSynopsis(<<<EOSYNOPSIS
10 **differential** __command__ [__options__]
11 Manage Differential.
13 EOSYNOPSIS
15 $args->parseStandardArguments();
17 $workflows = id(new PhutilClassMapQuery())
18 ->setAncestorClass('PhabricatorDifferentialManagementWorkflow')
19 ->execute();
20 $workflows[] = new PhutilHelpArgumentWorkflow();
21 $args->parseWorkflows($workflows);