1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-26 14:38:19 +01:00
phorge-phorge/src/applications/project/conduit/ProjectEditConduitAPIMethod.php

20 lines
390 B
PHP
Raw Normal View History

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