mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +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();
|
||
|
|
||
|
}
|