We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe this is a Windows only issue due to a bug in the loadConfigs() function in Baun class.
foreach ($configFiles as $configFile) { $configKey = str_replace(BASE_PATH . 'config/', '', $configFile); $configKey = str_replace(DIRECTORY_SEPARATOR, '-', strtolower($configKey)); $configKey = str_replace('.php', '', $configKey); $configData[$configKey] = require $configFile; }
should be:
foreach ($configFiles as $configFile) { $configKey = str_replace(BASE_PATH . 'config'.DIRECTORY_SEPARATOR, '', $configFile); $configKey = str_replace(DIRECTORY_SEPARATOR, '-', strtolower($configKey)); $configKey = str_replace('.php', '', $configKey); $configData[$configKey] = require $configFile; }
or else config keys are created incorrectly and $this->config->get('providers.events') will return nothing and fail.
$this->config->get('providers.events')
The text was updated successfully, but these errors were encountered:
Fix "Missing events provider" Windows bug #9
ab96782
No branches or pull requests
I believe this is a Windows only issue due to a bug in the loadConfigs() function in Baun class.
should be:
or else config keys are created incorrectly and
$this->config->get('providers.events')
will return nothing and fail.The text was updated successfully, but these errors were encountered: