1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-28 07:28:20 +01:00
phorge-phorge/src/applications/transactions/editfield/PhabricatorProjectsEditField.php

19 lines
393 B
PHP
Raw Normal View History

<?php
final class PhabricatorProjectsEditField
extends PhabricatorTokenizerEditField {
protected function newDatasource() {
return new PhabricatorProjectDatasource();
}
protected function newHTTPParameterType() {
return new AphrontProjectListHTTPParameterType();
}
protected function newConduitParameterType() {
return new ConduitProjectListParameterType();
}
}