mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-19 10:18:38 +01:00
20 lines
426 B
PHP
20 lines
426 B
PHP
|
<?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.');
|
||
|
}
|
||
|
|
||
|
}
|