mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 20:10:55 +01:00
15 lines
253 B
PHP
15 lines
253 B
PHP
|
<?php
|
||
|
|
||
|
abstract class PhabricatorPackagesEditEngine
|
||
|
extends PhabricatorEditEngine {
|
||
|
|
||
|
public function isEngineConfigurable() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function getEngineApplicationClass() {
|
||
|
return 'PhabricatorPackagesApplication';
|
||
|
}
|
||
|
|
||
|
}
|