php 7.4 dev branch

This commit is contained in:
2020-04-03 15:56:04 +02:00
parent 2636719583
commit a8fc52b42a
48 changed files with 456 additions and 530 deletions

View File

@@ -1,17 +0,0 @@
<?php
require_once './LanguageModule.php';
abstract class CLanguageModuleGeneral {
public static function getEntries($langCode) {
switch($langCode) {
case "de_DE":
$this->entries[""] = "";
break;
}
}
}
?>

View File

@@ -1,9 +1,6 @@
<?php
abstract class CLanguageModule {
abstract class LanguageModule {
public abstract static function getEntries($langCode);
}
?>
public abstract function getEntries(string $langCode);
}