Differential D14064 Diff 34068 src/applications/cache/management/PhabricatorCacheManagementPurgeWorkflow.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/cache/management/PhabricatorCacheManagementPurgeWorkflow.php
| <?php | <?php | ||||
| final class PhabricatorCacheManagementPurgeWorkflow | final class PhabricatorCacheManagementPurgeWorkflow | ||||
| extends PhabricatorCacheManagementWorkflow { | extends PhabricatorCacheManagementWorkflow { | ||||
| protected function didConstruct() { | protected function didConstruct() { | ||||
| $this | $this | ||||
| ->setName('purge') | ->setName('purge') | ||||
| ->setSynopsis(pht('Drop data from caches.')) | ->setSynopsis(pht('Drop data from caches. APC-based caches can be '. | ||||
| 'purged from the web interface.')) | |||||
| ->setArguments( | ->setArguments( | ||||
| array( | array( | ||||
| array( | array( | ||||
| 'name' => 'purge-all', | 'name' => 'purge-all', | ||||
| 'help' => pht('Purge all caches.'), | 'help' => pht('Purge all caches.'), | ||||
| ), | ), | ||||
| array( | array( | ||||
| 'name' => 'purge-remarkup', | 'name' => 'purge-remarkup', | ||||
| ▲ Show 20 Lines • Show All 85 Lines • Show Last 20 Lines | |||||