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
Today I installed this bundle in my SF 5.1 project and encountered the following issues:
Changed:
# Dmishh\SettingsBundle\Resources\config\routing.yml dmishh_settings_manage_global: path: /global defaults: { _controller: DmishhSettingsBundle:Settings:manageGlobal } dmishh_settings_manage_own: path: /personal defaults: { _controller: DmishhSettingsBundle:Settings:manageOwn }
into:
# Dmishh\SettingsBundle\Resources\config\routing.yml dmishh_settings_manage_global: path: /global defaults: _controller: Dmishh\SettingsBundle\Controller\SettingsController::manageGlobalAction dmishh_settings_manage_own: path: /personal defaults: _controller: Dmishh\SettingsBundle\Controller\SettingsController::manageOwnAction
# Dmishh\SettingsBundle\Resources\config\services.yml Dmishh\SettingsBundle\Controller\SettingsController: arguments: - '@translator' - '@Dmishh\SettingsBundle\Manager\SettingsManagerInterface' - ~ # template - ~ # manage own settings - ~ # security role
Into:
# Dmishh\SettingsBundle\Resources\config\services.yml Dmishh\SettingsBundle\Controller\SettingsController: public: true autowire: true tags: ['container.service_subscriber'] arguments: - '@translator' - '@Dmishh\SettingsBundle\Manager\SettingsManagerInterface' - ~ # template - ~ # manage own settings - ~ # security role
// Dmishh\SettingsBundle\DependencyInjection/Configuration.php //... $rootNode ->children() ->scalarNode('template') ->defaultValue('DmishhSettingsBundle:Settings:manage.html.twig') //...
// Dmishh\SettingsBundle\DependencyInjection/Configuration.php // ... $rootNode ->children() ->scalarNode('template') ->defaultValue('@DmishhSettings/Settings/manage.html.twig') //...
If I have the time, I will open a PR.
The text was updated successfully, but these errors were encountered:
Would be great if you can open a PR, so we can get this resolved.
Sorry, something went wrong.
In that case, it might also be time to loose SF3.4 compatibility and update the dependencies.
No branches or pull requests
Today I installed this bundle in my SF 5.1 project and encountered the following issues:
Routing not working properly
Changed:
into:
Autowiring not working properly
Changed:
Into:
Using deprecated templating paths
Changed:
Into:
If I have the time, I will open a PR.
The text was updated successfully, but these errors were encountered: