Add a new Interface that allows to define the firewall configuration. An array of firewall configuration is passed to the method and the new config is expected.
interface FirewallPluginInterface
{
/**
* @return array
*/
public function getFirewallConfig(array $config);
}
The manager bundle should handle this instead of just loading the security.yml from core-bundle.
Related to https://github.com/contao/manager-bundle/pull/22
Add a new Interface that allows to define the firewall configuration. An array of firewall configuration is passed to the method and the new config is expected.
The manager bundle should handle this instead of just loading the
security.yml
from core-bundle.