mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-20 18:58:56 +01:00
20 lines
393 B
PHP
20 lines
393 B
PHP
|
<?php
|
||
|
|
||
|
final class PasteEditConduitAPIMethod
|
||
|
extends PhabricatorApplicationEditEngineAPIMethod {
|
||
|
|
||
|
public function getAPIMethodName() {
|
||
|
return 'paste.edit';
|
||
|
}
|
||
|
|
||
|
public function newEditEngine() {
|
||
|
return new PhabricatorPasteEditEngine();
|
||
|
}
|
||
|
|
||
|
public function getMethodSummary() {
|
||
|
return pht(
|
||
|
'Apply transactions to create a new paste or edit an existing one.');
|
||
|
}
|
||
|
|
||
|
}
|