@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1#!/usr/bin/env php
2<?php
3
4$root = dirname(dirname(dirname(__FILE__)));
5require_once $root.'/scripts/__init_script__.php';
6
7$args = new PhutilArgumentParser($argv);
8
9$args->setTagline(pht('documentation generator'));
10$args->setSynopsis(pht(<<<EOHELP
11**diviner** __command__ [__options__]
12 Generate documentation.
13EOHELP
14));
15$args->parseStandardArguments();
16
17$workflows = id(new PhutilClassMapQuery())
18 ->setAncestorClass(DivinerWorkflow::class)
19 ->execute();
20$workflows[] = new PhutilHelpArgumentWorkflow();
21$args->parseWorkflows($workflows);