// Run this check for manual installations
if (!
is_file(COMPOSER_PATH
)) { $this->
resolvePlatformExtensions(); // @codeCoverageIgnore
} // Set default locale on the server
Locale::
setDefault($this->config->defaultLocale ?? 'en'
);
// Set default timezone on the server
date_default_timezone_set($this->config->appTimezone ?? 'UTC'
);
$this->
initializeKint();
} /**
* Checks system for missing required PHP extensions.
*
* @throws FrameworkException
*
* @codeCoverageIgnore
*/
protected function resolvePlatformExtensions() {