1 | <?php |
||
16 | abstract class AbstractServerLoader implements LoaderInterface |
||
17 | { |
||
18 | /** |
||
19 | * Server name. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $serverName = 'unknown'; |
||
24 | |||
25 | /** |
||
26 | * Run the loading process for the ext_tables.php file. |
||
27 | */ |
||
28 | public function loadExtensionTables(Loader $autoLoader, array $loaderInformation): void |
||
34 | |||
35 | /** |
||
36 | * Run the loading process for the ext_localconf.php file. |
||
37 | */ |
||
38 | public function loadExtensionConfiguration(Loader $autoLoader, array $loaderInformation): void |
||
44 | } |
||
45 |