Something went wrong. Try again.
@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
Something went wrong. Try again.
12345678910111213141516171819202122#!/usr/bin/env php<?php
$root = dirname(dirname(dirname(__FILE__)));require_once $root.'/scripts/__init_script__.php';
$args = new PhutilArgumentParser($argv);$args->setTagline(pht('manage cache'));$args->setSynopsis(<<<EOSYNOPSIS**cache** __command__ [__options__] Manage Phabricator caches.
EOSYNOPSIS );$args->parseStandardArguments();
$workflows = id(new PhutilClassMapQuery()) ->setAncestorClass('PhabricatorCacheManagementWorkflow') ->execute();$workflows[] = new PhutilHelpArgumentWorkflow();$args->parseWorkflows($workflows);