1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-19 10:18:38 +01:00
phorge-phorge/src/applications/packages/conduit/PhabricatorPackagesVersionEditConduitAPIMethod.php

20 lines
426 B
PHP
Raw Normal View History

<?php
final class PhabricatorPackagesVersionEditConduitAPIMethod
extends PhabricatorEditEngineAPIMethod {
public function getAPIMethodName() {
return 'packages.version.edit';
}
public function newEditEngine() {
return new PhabricatorPackagesVersionEditEngine();
}
public function getMethodSummary() {
return pht(
'Apply transactions to create a new version or edit an existing one.');
}
}