mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-01 01:18:22 +01:00
14 lines
184 B
PHP
14 lines
184 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @group search
|
||
|
*/
|
||
|
abstract class PhabricatorSearchManagementWorkflow
|
||
|
extends PhutilArgumentWorkflow {
|
||
|
|
||
|
final public function isExecutable() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|