mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-13 23:38:34 +01:00
12 lines
186 B
PHP
12 lines
186 B
PHP
|
<?php
|
||
|
|
||
|
abstract class DrydockWebrootInterface extends DrydockInterface {
|
||
|
|
||
|
final public function getInterfaceType() {
|
||
|
return 'webroot';
|
||
|
}
|
||
|
|
||
|
abstract public function getURI();
|
||
|
|
||
|
}
|