Uncomment code that was accidentally disabled for debug purposes

This commit is contained in:
Marc Ole Bulling 2020-03-22 17:04:13 +01:00
parent 5236b755cd
commit 26b33b47e3

View File

@ -9,10 +9,10 @@ const REQUIRED_PHP_EXTENSIONS = array("fileinfo", "pdo_sqlite", "gd");
class PrerequisiteChecker { class PrerequisiteChecker {
public function checkRequirements() { public function checkRequirements() {
/* self::checkForConfigFile(); self::checkForConfigFile();
self::checkForConfigDistFile(); self::checkForConfigDistFile();
self::checkForComposer(); self::checkForComposer();
self::checkForYarn(); */ self::checkForYarn();
self::checkForPhpExtensions(); self::checkForPhpExtensions();
} }